执行了suspendAllTasks,然后在执行resumeAllTasks会出下面的错
Invalid resume data for background download. Background downloads must use http or https and must download to an accessible file.
load failed with error Error Domain=NSURLErrorDomain Code=-3003
我是在 SGDownloadTaskCorrect 文件 downloadTaskWithSession
把if (systemVersion >= 10.0 || systemVersion < 10.2)
换成下面的
if (systemVersion >= 10.0 && systemVersion < 10.2)
执行了suspendAllTasks,然后在执行resumeAllTasks会出下面的错
Invalid resume data for background download. Background downloads must use http or https and must download to an accessible file.
load failed with error Error Domain=NSURLErrorDomain Code=-3003
我是在 SGDownloadTaskCorrect 文件 downloadTaskWithSession
把if (systemVersion >= 10.0 || systemVersion < 10.2)
换成下面的
if (systemVersion >= 10.0 && systemVersion < 10.2)