@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コードに明示的に追加する必要があるのはいつですか?