1
我有一個程序,使用NSURLSession從網址下載視頻,但我無法同時做多個下載。 我該怎麼做? 我如何管理多個同時下載?多個下載NSURLSession
NSURLSessionConfiguration *sessionConfig = [NSURLSessionConfiguration defaultSessionConfiguration];
NSURLSession *session = [NSURLSession sessionWithConfiguration:sessionConfig delegate:self delegateQueue:nil];
NSURLSessionDownloadTask *getVideo = [session downloadTaskWithURL:fileURL
completionHandler:^(NSURL *location,
NSURLResponse *response,
NSError *error) {
// 2
receivedData = [NSData dataWithContentsOfURL:location];
dispatch_async(dispatch_get_main_queue(), ^{
// do stuff with image
NSLog(@"%s receiveData:%d",__FUNCTION__,[receivedData length]);
});
}];
[getVideo resume];
你爲什麼要發表另一個問題?如果你有更多的細節,只需更新你以前的問題。 – rmaddy
你原來的問題在哪裏?它得到了答案嗎? – marciokoko