1
私はこのコードを使用しています:NSTimer問題
timer = [NSTimer scheduledTimerWithTimeInterval:2
target:self
selector:@selector(update)
userInfo:nil
repeats:YES];
...
-(void)update {
NSDate *date = [NSDate date];
NSString *Currentdate = [date descriptionWithCalendarFormat:@"%b %d, %Y %I:%M:%S %p"
timeZone:nil
locale:nil];
lbl.text = Currentdate;
}
それが正常に動作しますが、私は、実行時に1秒に2秒からタイマー間隔を変更したいです。これどうやってするの?
ありがとうございます。
scheduledTimerWithTimeInterval:2ではなく1を設定しますか? – diciu
私は彼が作成された後、タイマーの間隔を変更する方法を知りたいと思いますか? – jhauberg