Orginizing Code with Pragma Mark
Pragma mark is simply a way to organize your methods in the method list pop up button in Xcode
After XCode 4, it only works between methods, so you can add a dummy methods at the beginning of your classes and then use the pragma mark like this: #pragma mark -My methods
(Source: http://cocoasamurai.blogspot.nl/2006/09/tip-pragma-mark-organizing-your-source.html )











