Objective-C でプロパティを宣言するとき、アクセサーを取得するための synthesize 句も追加します
@interface StoreManager ()
@property (nonatomic, copy) NSString *writeStoresTimer;
@implementation StoreManager
@synthesize writeStoresTimer
私は通常、次の構文を使用してプロパティに値を設定します
[self setWriteStoresManager:@"Data"];
上記のステートメントは self.writeStoresTimer = @"Data" と同じですか? これは set-accessor も呼び出しますか