我有一个计时器,它必须在 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";
}