gpt4 book ai didi

iphone - 如何在应用程序后台运行计时器?

转载 作者:行者123 更新时间:2023-12-03 19:02:33 24 4
gpt4 key购买 nike

我想减少倒计时。因此,如果用户最小化应用程序,则应用程序加载后台。如何在应用程序后台运行计时器?我正在使用下面的代码。当应用程序最小化时,计时器停止。请帮助我。

        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;
}
}

最佳答案

我得到了答案,它工作得很好。

UIBackgroundTaskIdentifier bgTask =0;
UIApplication *app = [UIApplication sharedApplication];
bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
[app endBackgroundTask:bgTask];
}];

timer = [NSTimer
scheduledTimerWithTimeInterval:1.0
target:self
selector:@selector(timerCountDown:)
userInfo:nil
repeats:YES];

关于iphone - 如何在应用程序后台运行计时器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12916633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com