views:

48

answers:

1

what is this #pragma mark text field delegates?

It is like a comment? or what is this used for?

+9  A: 

"#pragma mark" labels will show up in the function list drop-down in Xcode, so you can use it to add separators or labels to groups of functions.

Adam Vandenberg
Just a note, other editors recognize this too, like BBEdit.
Adam Vandenberg
How do you bring up the drop down?
K001