显示使用 AFNetworking 下载图像的进度
Posted
技术标签:
【中文标题】显示使用 AFNetworking 下载图像的进度【英文标题】:Show progress for downloading image using AFNetworkig 【发布时间】:2015-03-03 10:21:29 【问题描述】:我想在下载大图时显示进度。我是 设置图片路径如下。
UIImage *backgroundImage =[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:backgoundImagePath]]];
如何使用 AFNetworking 框架显示图像的下载进度。
【问题讨论】:
试过这个:***.com/questions/19145093/… ? 【参考方案1】:试试这个,
[manager setDownloadTaskDidWriteDataBlock:^(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite)
float percentageDone = ((float)totalBytesWritten/(float)totalBytesExpectedToWrite)*100;
NSLog(@"Downloading..%.f",percentageDone);
];
【讨论】:
以上是关于显示使用 AFNetworking 下载图像的进度的主要内容,如果未能解决你的问题,请参考以下文章