Nov 1 · 1 min read
Up to Xcode 5 the preprocessor directive #pragma mark existed.
From Xcode 6 on, you have to use // MARK:
These preprocessor features allow to bring some structure to the function drop down box of the source code editor.
some examples :
// MARK:-> will be preceded by a horizontal divider
// MARK: your text goes here-> puts ‘your text goes here’ in bold in the drop down list
// MARK: - your text goes here
