NSURLSession -- background session

来源:互联网 发布:mac 打开共享文件夹 编辑:程序博客网 时间:2024/06/10 15:06

IMPORTANT You can’t use NSURLSession’s convenience APIs, things like -uploadTaskWithRequest:fromFile:completionHandler:, in a background session.  You must use the delegate-based API, for example, -uploadTaskWithRequest:fromFile:.  This makes sense when you think about it; if your app is terminated and then relaunched, there’s no way for the system to reconstitute the state held in a completion handler block.


Refer: https://forums.developer.apple.com/message/27555#27555

原创粉丝点击