我有一个应用程序(iOS 7+),我需要在" n"之后调用web服务。一旦应用程序进入后台,分钟(总是大于3)。在调用该Web服务之后,需要每隔45秒调用另一个Web服务。
对webservice的调用需要用户的当前位置。所以我占用了用户位置,我在info.plist
文件中也有相应的条目。
我在applicationdidEnterBackground
CLLocationManager * manager = [[CLLocationManager alloc]init];
__block UIBackgroundTaskIdentifier background_task;
background_task = [application beginBackgroundTaskWithExpirationHandler:^ {
[application endBackgroundTask: background_task];
background_task = UIBackgroundTaskInvalid;
}];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[manager startUpdatingLocation];
while(TRUE)
{
//backgroundTimeRemaining time does not go down.
NSLog(@"Background time Remaining: %f",[[UIApplication sharedApplication] backgroundTimeRemaining]);
[NSThread sleepForTimeInterval:1]; //wait for 1 sec
}
[application endBackgroundTask: background_task];
background_task = UIBackgroundTaskInvalid;
});
关于我如何在后台运行应用程序" n"分钟总是大于3。
答案 0 :(得分:0)
引用后台获取处理程序。有一些限制,它可以帮助你。