码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发篇-AFNetworking网络封装(下载)

时间:2016-02-09 10:29:36      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:

最近用到了关于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网络封装(下载)

标签:

原文地址:http://www.cnblogs.com/Li-zhen/p/5185438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!