Is it possible to have a “#pragma mark” hierarchy?

前端 未结 2 891
遥遥无期
遥遥无期 2020-12-10 03:43

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 method

相关标签:
2条回答
  • 2020-12-10 04:27

    You can use any of these combinations:

    1. Hyphen before Description - Puts a separator above the description

    #pragma mark - Description

    1. Hyphen after Description - Puts a separator below the description

    #pragma mark Description -

    1. Hyphen before and after Description - Puts a separator above and below the description

    #pragma mark - Description -

    Also, if you just want separators and no descriptions, simply use #pragma mark or #pragma mark -.

    0 讨论(0)
  • 2020-12-10 04:48

    Simply only use the - before and after your main section to surround it in lines, exclude the dash for the subsections, and then the method names will show as always.

    #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{}
    

    enter image description here

    0 讨论(0)
提交回复
热议问题