gpt4 book ai didi

ios - 继续在后台运行 iOS 应用程序,从加速器收集数据并将其发送到服务器

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

我开发了一个应用程序,用于读取加速器数据,将它们存储在本地并以特定间隔频繁地将它们发送到服务器。该应用程序必须在后台运行,但一段时间后(有时是 3 分钟)它会像关闭一样停止发送。

是否可以让应用程序一直保持事件状态,在后台运行并向服务器发送数据?怎么样?

该应用应该可以持续运行数周。

谢谢你们。

最佳答案

iOS will allow you 3 minutes of execution in background. 

https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html

如果你想继续运行,有各种“变通办法”,但没有一个稳定的解决方案。你可以启动后台任务,然后管理它们

 -(void)applicationDidEnterBackground:(UIApplication *)application

{
UIApplication *app = [UIApplication sharedApplication];

UIBackgroundTaskIdentifier bgTask = 0;

backgroundTimer = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(backgroundTask) userInfo:nil repeats:YES];

bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
[app endBackgroundTask:bgTask];
}];

}

关于ios - 继续在后台运行 iOS 应用程序,从加速器收集数据并将其发送到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27610170/

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