我正在编写一个需要后台下载的应用程序。我已将我的配置NSURLSession
为在后台会话配置中。
当应用程序处于前台甚至后台模式(主页按钮)时,一切正常,但只要我按下电源按钮强制手机进入睡眠模式。NSURLSession
delegate
来电:
- (void)URLSession:(NSURLSession *)session
task:(NSURLSessionTask *)task
didCompleteWithError:(NSError *)error
返回错误Domain=NSPOSIXErrorDomain Code=1 "The operation couldn’t be completed. Operation not permitted"
,我的下载失败。