I use #pragma mark - Description
frequently to organize my methods in Xcode. However, I find that sometimes I need to categories and subcategories for my methods, like this:
Public Methods
- Helper Methods
- aMethod
- Other Type of Methods
- anotherMethod
Private Methods
- Some Type of Method
- aPrivateMethod
Is this possible?
See Question&Answers more detail:os