在視圖控制器的接口,我有在iOS上,爲什麼ViewController中的init不起作用?
@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?
視圖控制器如何被創建? – ACBurk 2012-04-21 04:01:29
它是一個標準的單一視圖應用程序 – 2012-04-21 04:04:42