我想减少倒计时的时间。因此,如果用户最小化应用程序,则应用程序加载背景。如何在应用程序后台运行计时器?我正在使用下面的代码。当应用程序最小化时,计时器停止。请帮我。
timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerCountDown) userInfo:nil repeats:YES];
- (void)timerCountDown
{
if(secondsLeft > 0 ) {
secondsLeft -- ;
hours = secondsLeft / 3600;
minutes = (secondsLeft % 3600) / 60;
seconds = (secondsLeft %3600) % 60;
}
}