Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道一个不错的方法来捕捉忘记使用“自我”。设置变量时?是否有可以触发警告的 xcode 编译器设置?我试图想出最简单的方法来确保有一个“自我”。前面的作业万无一失。
到目前为止,我能建议的最好方法是区分 ivar 和属性名称,例如:
@implementation Person @synthesize firstName = firstName_; @end
所以更难出错,尽管它不是万无一失的。