時計アプリのようにカウントダウンタイマーを使用して、ユーザーが開始したい時間を入力できるカウントダウンタイマーがあります。問題は、タイマーを実際にカウントダウンさせる方法がわからないことです。updateTimer
私はすでに UI を作成しており、ほとんどのコードを持っていますが、私が持っているメソッドに何が入るかはわかりません。これが私のコードです:
- (void)updateTimer
{
//I don't know what goes here to make the timer decrease...
}
- (IBAction)btnStartPressed:(id)sender {
pkrTime.hidden = YES; //this is the timer picker
btnStart.hidden = YES;
btnStop.hidden = NO;
// Create the timer that fires every 60 sec
stopWatchTimer = [NSTimer scheduledTimerWithTimeInterval:1.0
target:self
selector:@selector(updateTimer)
userInfo:nil
repeats:YES];
}
- (IBAction)btnStopPressed:(id)sender {
pkrTime.hidden = NO;
btnStart.hidden = NO;
btnStop.hidden = YES;
}
updateTimer
タイマーを減らす方法を教えてください。
前もって感謝します。