ViewController のインターフェイスでは、
@property int count;
そして実装では、私は持っています
@synthesize count;
-(id) init {
self = [super init];
if (self) {
self.count = 100;
}
return self;
}
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"%i", self.count++);
}
なんらかの理由で、最初self.count
に印刷されたのは0ですが、100ではありませんか?