我需要从服务器下载一些图像和视频:
NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
for (int i = 0; i < _collectionArr.count; ++i) {
NSURL *URL = [NSURL URLWithString:URL_ADDRESS(portNumber,_collectionArr[i])];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];
NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
NSURL *documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];
return [documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]];
} completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
NSLog(@"File downloaded to: %@", filePath);
if (i == _collectionArr.count - 1) {
[SVProgressHUD showSuccessWithStatus:@"Done"];
}
}];
[downloadTask resume];
}
我发现它太慢了!速度约为 200K/s,使用 Android 的时间比 iPhone 少 2/3。当我下载大约 4.6M 的 mp4 时,需要 15 秒。
2014-11-29 13:46:35.071 testDownload[2105:47825] Begin
2014-11-29 13:46:51.740 testDownload[2105:47825] File downloaded to: file:///Users/apple/Library/Developer/CoreSimulator/Devices/259F2CB8-01FD-47C2-A38F-6100A2FF350A/data/Containers/Data/Application/71E553BC-F85D-4BFA-8937-FE9026FDF65C/Documents/VTS_01_audi.mp4
但是当我使用其他应用程序下载电影时,它可以是 2M/s。当我使用 afnetworking 时我错了吗?它是如何发生的,我能做些什么来处理它。另一个问题是我知道用 if (i == _collectionArr.count - 1){[SVProgressHUD showSuccessWithStatus:@"Done"];}监视最后一个请求是错误的, 但我不知道正确的答案。
谢谢你的帮助。