在 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?