Does Xcode support anything akin to Visual Studio style #region directives for arbitrary code folding?

link|improve this question

feedback

3 Answers

up vote 26 down vote accepted

No, you can only fold code on various defined scoping levels in Xcode.

You can use little tricks to make navigating via the function menu easier, though.

#pragma mark

Allows you to create a grouping where the label following mark will show up in the function menu. If the label is a hyphen, a separator is inserted into the function menu.

Also, the following labels in comments will show up in the function menu:

// MARK:
// TODO:
// FIXME:
// !!!:
// ???:

Obviously since #pragma mark is not really portable, if you're building a portable application and need it to work with a compiler that doesn't just ignore #pragma directives that it doesn't understand, the comment-style mark is a decent alternative.

link|improve this answer
The C standard says a conforming implementation must ignore #pragma directives that it doesn't understand. Of course, every #pragma directive that does not start with STDC is implementation-defined anyway, so still not that portable. – dreamlax Dec 13 '11 at 18:59
feedback

I am going to hell for this but here goes:

At the top of a given file, put

#define FOLD 1

Wherever you want to fold something, wrap it in an if block like so:

if(FOLD) {
 // your code to hide
 // more code
}

That will let you fold it away out of sight.

link|improve this answer
4  
It would be a good idea, but you can only put an if statement inside a function scope. You can't wrap struct, enum and function definitions in an if. – Chuck Apr 4 '09 at 8:21
1  
+1 for going to hell – MrJD Apr 21 at 14:39
feedback

That won't work in the place you want it most, that is, around groups of functions or methods.

It may be useful inside a long, linear method with no internal conditionals or loops, but such methods aren't common in general Mac OS X UI code, though if you're writing some big numeric or graphics-crunching code it could help group things.

And the if(fold) is entirely superfluous. Just use the braces inside a method or function and Xcode will fold them.

link|improve this answer
It's surprising that so many people are unaware that you can introduce scope without branching. – dreamlax Dec 13 '11 at 19:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.