命名
最后更新于:2022-04-01 05:34:57
尽可能遵守 Apple 的命名约定,尤其是和 [内存管理规则](https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/Articles/MemoryMgmt.html) ([NARC](http://stackoverflow.com/a/2865194/340508)) 相关的地方。
推荐使用长的、描述性的方法和变量名
**推荐:**
~~~
UIButton *settingsButton;
~~~
**不推荐:**
~~~
UIButton *setBut;
~~~