APP开发的干货 - 1、使用OC的代码规范

代码规范网址:http://www.csdn.net/article/2015-06-01/2824818-objective-c-style-guide
                         https://github.com/VincentSit/NYTimes-Objective-C-Style-Guide-ZH

1、方法的行数不能大于150,controller的文件代码行数不能大于800

2、#pragma mark 注释

控制器的注释

#pragma mark - --- lift cycle 生命周期 ---

#pragma mark - --- delegate 视图委托 ---

#pragma mark - --- event response 事件相应 ---

#pragma mark - --- private methods 私有方法 ---

#pragma mark - --- getters and setters 属性 ---

视图的注释

#pragma mark - --- init 视图初始化 ---

#pragma mark - --- delegate 视图委托 ---

#pragma mark - --- event response 事件相应 ---

#pragma mark - --- private methods 私有方法 ---

#pragma mark - --- setters 属性 ---

#pragma mark - --- getters 属性 —

3、属性注释的代码段

@property(nullable, nonatomic, readonly)<#Class#> *<#obj#> ; // <##>

@property(nullable, nonatomic, readwrite)<#Class#> *<#obj#> ; // <##>

@property(nullable, nonatomic, strong)<#Class#> *<#obj#> ; // <##>

@property(nullable, nonatomic, copy)<#Class#> *<#obj#> ; // <##>

@property(nullable, nonatomic, weak)<#Class#> *<#obj#> ; // <##>

@property(readonly, getter=is<#obj#>)BOOL <#obj#> ; // <##>

@property(null_resettable, nonatomic, strong)<#Class#> *<#obj#> ; // <##>

@property(nonatomic)<#Class#> <#obj#> ; // <##>

@property(nonatomic, assign)<#Class#> <#obj#> ; // <##>

NS_ASSUME_NONNULL_BEGIN
NS_ASSUME_NONNULL_END

4、泛型中的协变和逆变

https://msdn.microsoft.com/zh-cn/library/dd799517.aspx

5、Objective-C 三大新特性

http://www.cocoachina.com/ios/20150617/12148.html

转载于:https://www.cnblogs.com/shentian/p/5147376.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值