-1
カウントダウンタイマーが作動しません。それは画面上の '99'で始まり、そこで停止します。それはまったく動かない。カウントダウンタイマーが作動しない
私のヘッダーファイルにあります。私の.mファイルで
@interface FirstTabController : UIViewController {
NSTimer *myTimer;
}
@property (nonatomic, retain) NSTimer *myTimer;
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context {
myTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(countDown) userInfo:nil repeats:YES];
}
- (void)countDown {
int counterInt = 100;
int newTime = counterInt - 1;
lblCountdown.text = [NSString stringWithFormat:@"%d", newTime];
}
そして私は私のdeallocで 'myTimer' を無効にします。だから誰でも私のコードで何が間違っているか教えてもらえますか?
ありがとう..私はそれを見落とした.. – sicKo