上下文: 我尝试使用backgroundSessionConfiguration从动作扩展中调用创建任务(下载或上传)。
要做到这一点,我会在苹果documention
中放弃这个例子-(void)downloadTest
{
NSURLSession *mySession = [self configureMySession];
NSURL *url = [NSURL URLWithString:@"http://www.sellcell.com/blog/wp-content/uploads/2014/03/dog-apps.jpg"];
NSURLSessionTask *myTask = [mySession downloadTaskWithURL:url];
[myTask resume];
}
- (NSURLSession *) configureMySession {
if (!_mySession) {
NSURLSessionConfiguration* config = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:@"com.mycompany.myapp.backgroundsession"];
// To access the shared container you set up, use the sharedContainerIdentifier property on your configuration object.
config.sharedContainerIdentifier = @"group.com.mycompany.appname";
_mySession = [NSURLSession sessionWithConfiguration:config delegate:self delegateQueue:nil];
}
return _mySession;
}
我的问题是,当我致电[mySession downloadTaskWithURL:url];
时,它会返回nil。
如果我将配置更改为NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
,则会创建一个任务。
我没有看到我做错了什么,我创建了一个应用程序组,我在应用程序和扩展程序中使用它。
我使用我在config.sharedContainerIdentifier
创建的群组名称,但我不确定是否有必要。
注意:uploadTask我遇到同样的问题。
答案 0 :(得分:0)
您使用ARC吗?如果没有,请确保正确保留您的会话。 (看起来你直接使用了一个ivar。)
该共享容器标识符是否正确?如果容器不在您的权利中或尚未存在,您的会话将立即失效。添加失效委托方法,看看它是否被调用。如果是这样,那可能是个问题。