は、私がiOSでは、なぜViewControllerのinitが機能しませんでしたか? 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ですか?
View Controllerはどのように作成されていますか? – ACBurk
これは標準のSingle Viewアプリ –