1

我正在编写一个需要后台下载的应用程序。我已将我的配置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",我的下载失败。

4

1 回答 1

0

You have forgotten the bg-download entitlements (see target -> capabilities)

于 2018-06-26T07:26:02.270 回答