我有一个要数长达8小时(28800秒)之后,它应该被释放定时器
即时知道如何保持计时器在后台运行和/或当应用程序被关闭?
这是的NSTimer:
stopWatchTimer = [NSTimer scheduledTimerWithTimeInterval:1.0
target:self
selector:@selector(updateTimer)
userInfo:nil
repeats:YES];
这是我的情况:
counter++;
if (counter >= 28800) {
[stopWatchTimer invalidate];
counter =0;
timeLabel.text = @"Time Out";
}