gpt4 book ai didi

ios - ios7如何在后台运行进程

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:35:18 29 4
gpt4 key购买 nike

我想在前台和后台连续运行我的进程。我已经实现了以下代码

self.updateTimer = [NSTimer scheduledTimerWithTimeInterval:10.0
target:self
selector:@selector(repeatedMethod)
userInfo:nil
repeats:YES];

self.backgroundTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
NSLog(@"Background handler called. Not running background tasks anymore.");
[[UIApplication sharedApplication] endBackgroundTask:self.backgroundTask];
self.backgroundTask = UIBackgroundTaskInvalid;
}];

在前台很好,但在后台进程只运行了 5 分钟,而且运行时间不超过 5 分钟。但我希望它即使在后台也能连续运行。请帮忙。

最佳答案

事情就是这样,因为 completionHandler 在 5 分钟后被调用。在使用 UIBackgroundModes 之一之前,您不能在 iOS 中无限期地运行后台进程。这也取决于您必须提供 BackgroundMode 的功能,如果您在您的应用程序中使用它,否则苹果将拒绝它。

例如,如果您使用“VoiP”BackgroundMode,您的应用程序应该提供“VoiP 服务”,否则它将被拒绝

关于ios - ios7如何在后台运行进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22756480/

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