我经常使用#pragma mark - Description
在Xcode中组织我的方法。但是,我发现有时我需要为我的方法设置类别和子类别,如下所示:
公共方法
- 助手方法
- amethod方法
- 其他类型的方法
- anotherMethod
私人方法
- 某种方法
- aPrivateMethod
这可能吗?
答案 0 :(得分:26)
只需使用主要部分之前和之后的-
将其包围在行中,排除子部分的短划线,然后方法名称将一如既往地显示。
#pragma mark - Public Methods -
#pragma mark Helper Methods
- (void)aMethod{}
#pragma mark Other Type of Methods
- (void)anotherMethod{}
#pragma mark - Private Methods -
#pragma mark Some Type of Method
- (void)aPrivateMethod{}
答案 1 :(得分:1)