我創建了一個從10到0的倒數計時器。我創建了一個顯示秒數的計數器。現在我想讓標籤顯示櫃檯分鐘和秒鐘,就像那樣:00:00。 我該怎麼做? 這裏是我的倒數代碼:分秒倒數計時器
-(void)countdown
{
countdownCounter -= 1;
countdown.text = [NSString stringWithFormat:@"%i", countdownCounter];
}
-(IBAction)strat:(id)sender
{
countdownCounter = 10;
countdownTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(countdown) userInfo:nil repeats:YES];
}
}
謝謝!
有沒有其他的方式來做一個標籤的整個計時器? – cnaaniomer