Questions tagged «synthesize»


7
什么时候应该显式使用@synthesize?
据我所知,自XCode 4.4起,@synthesize它将自动生成属性访问器。但是,刚才我阅读了有关的代码示例NSUndoManager,并在代码中注意到@synthesize明确添加了。喜欢: @interface RootViewController () @property (nonatomic, strong) NSDateFormatter *dateFormatter; @property (nonatomic, strong) NSUndoManager *undoManager; @end @implementation RootViewController //Must explicitly synthesize this @synthesize undoManager; 我现在感到困惑...什么时候应该@synthesize在代码中明确添加?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.