Showing
1 changed file
with
16 additions
and
0 deletions
1 | # IOS编码规范 | 1 | # IOS编码规范 |
2 | + | ||
3 | +请参阅[苹果公司的Coding Guidelines](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/CodingGuidelines/CodingGuidelines.html) | ||
4 | + | ||
5 | +### 方法的分类整理 | ||
6 | + | ||
7 | +利用#prama mark - XXXX 可以进行方法的分类整理,使代码看起来更有组织,更整洁 | ||
8 | + | ||
9 | +建议的分类和顺序如下 | ||
10 | + | ||
11 | +* dealloc | ||
12 | +* 初始化函数 | ||
13 | +* #pragma mark - life cycle | ||
14 | +* #pragma mark - public methods | ||
15 | +* #pragma mark - private methods | ||
16 | +* #pragma mark - Observer methods | ||
17 | +* #pragma mark - 各种Delegate |
-
Please register or login to post a comment