iOS-良好的编码习惯

1.life cycle

1.所有的属性都使用getter和setter

2.在viewDidLoad里面只做addSubview

3.在viewWillAppear里面做布局相关的事情(例如:设置控件的Frame)

4.在viewDidAppear里面做Notification的监听

2.代码块顺序

1.life cycle

2.delegate

3.event response

4.private method

5.getters and setters

关于private methods,正常情况下ViewController里面不应该写
不是delegate方法的,不是event response方法的,不是life cycle方法的,就是private method了。正常情况下ViewController里面一般是不会存在private methods的,这个private methods一般是用于日期换算、图片裁剪这种小功能。这种小功能要么把它写成一个category,要么把它做成一个模块。

你可能感兴趣的:(iOS-良好的编码习惯)