iOS开发篇-AFNetworking网络封装(下载)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发篇-AFNetworking网络封装(下载)相关的知识,希望对你有一定的参考价值。
最近用到了关于AFNetworking的下载问题,顺便写到博客中,以供大家参考和研究。
NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
NSURL *URL = [NSURL URLWithString:@"http://example.com/download.zip"];
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);
}];
//重新开始下载
[downloadTask resume];
代码下载地址:
以上是关于iOS开发篇-AFNetworking网络封装(下载)的主要内容,如果未能解决你的问题,请参考以下文章
ios开发之--使用AFNetWorking 3.1.0 ,简单的请求封装类
iOS开发-AFNetworking封装Get(自定义HTTP Header)和Post请求及文件下载
对比iOS网络组件:AFNetworking 和 ASIHTTPRequest