我想在按下主页按钮且应用程序在后台运行时上传图像。
可能吗?如果是,那怎么办?如果没有,我还有其他选择吗?
提前致谢...
最佳答案
您可以在一段时间内使用此代码在后台执行任务,
UIBackgroundTaskIdentifier bgTask = 0;
UIApplication *app = [UIApplication sharedApplication];
bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
[app endBackgroundTask:bgTask];
}];
self.silenceTimer = [NSTimer scheduledTimerWithTimeInterval:10 target:self
selector:@selector(startLocationServices) userInfo:nil repeats:YES];
引用此:
http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/ManagingYourApplicationsFlow/ManagingYourApplicationsFlow.html
我认为这对您有帮助。 :)
关于iphone - 应用程序在后台运行时可以调用webRequest吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15267148/