我正在审查
Objective-C Programming Language documentation以更好地理解财产申报和实施.我遇到过这一行,并认为这对我编码的方式很重要:
Typically you should specify accessor method names that are key-value
coding compliant (see Key-Value Coding Programming Guide)—a common
reason for using the getter decorator is to adhere to the
isPropertyName convention for Boolean values.
到现在为止,我只是使用了这个:
@property(nonatomic,assign)BOOL aBooleanProperty;
但我总觉得这可能不太对.
我不明白文档中的最后一部分(突出显示).这是如何表明我应该提供一个吸气装置,这对我有什么用呢?