Created
May 30, 2012 21:41
-
-
Save thelbane/2839129 to your computer and use it in GitHub Desktop.
Objective C sections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma mark - Static | |
#pragma mark - Init/Dealloc | |
#pragma mark - Properties | |
#pragma mark - Public | |
#pragma mark - Private | |
#pragma mark - View lifecycle | |
#pragma mark - Delegates |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These are the code sections we use in our implementation (.m) files for XCode projects. The delegates section will contain additional pragma marks for each delegate implemented (e.g.: #pragma mark UITableViewDelegate).