我有一个非常相似的问题,后台任务会开始但随后似乎暂停。当应用程序回到前台时,任务将完成。
我通过记录来自的输出验证了这种情况-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
我发现解决这个问题的方法是与你如何存储、处理和执行你的完成处理程序有关。
在我的情况下,这个过程开始于
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
[self.fmStore performBackgroundRefresh:^(UIBackgroundFetchResult result) {
//Set application badge if new data is available
if (result==UIBackgroundFetchResultNewData) [UIApplication sharedApplication].applicationIconBadgeNumber++;
completionHandler(result);
}];
}
远程通知开始下载过程的地方。
管理下载的方法根据新数据的可用性返回一个值
-(void)performBackgroundRefresh:(void (^)(UIBackgroundFetchResult))completion{
if(newData) completion(UIBackgroundFetchResultNewData);
else completion(UIBackgroundFetchResultNoData);
}
此时它返回到存储完成处理程序的 ApplicationDelegate
- (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)())completionHandler{
//Store completion handler for background session
self.sessionCompletionHandler=completionHandler;
}
最后,这段代码被执行,它调用完成处理程序并创建适当的通知
- (void)URLSessionDidFinishEventsForBackgroundURLSession:(NSURLSession *)session{
[session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
if (![downloadTasks count]) {
FM_AppDelegate *appDelegate=(FM_AppDelegate *)[[UIApplication sharedApplication] delegate];
if (appDelegate.sessionCompletionHandler) {
void (^completionHandler)() = appDelegate.sessionCompletionHandler;
appDelegate.sessionCompletionHandler = nil;
completionHandler();
}
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[[NSNotificationCenter defaultCenter] postNotificationName:@"ContentRefreshNotification" object:Nil];
}];
}
}];
}
这个来回过程发生在我的例子中,因为 NSURLSession 存在于作为 ApplicationDelegate 属性的对象中。如果您将 NSURLSession 实现为 ApplicationDelegate 本身的属性,那么所有这些代码都将存在于同一个文件中。
希望这会有所帮助,但如果您需要更多信息,请参阅这两个教程1和2,因为我的代码基于我在这些教程中阅读的内容。