sdwebimage
Posted 潜意识
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sdwebimage相关的知识,希望对你有一定的参考价值。
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:app.icon] placeholderImage:[UIImage imageNamed:@"placeholder"] options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize) { // expectedSize: 图片的总字节数 // receivedSize: 已经接收的图片字节数 NSLog(@"下载进度:%f", 1.0 * receivedSize / expectedSize); } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) { NSLog(@"下载完图片"); }];
[[SDWebImageManager sharedManager] downloadImageWithURL:nil options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize) { } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) { }]; // SDWebImage的图片缓存周期是多长:1个星期
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application { // 清除内存缓存 [[SDWebImageManager sharedManager].imageCache clearMemory]; // 取消所有下载 [[SDWebImageManager sharedManager] cancelAll]; }
以上是关于sdwebimage的主要内容,如果未能解决你的问题,请参考以下文章
通过 SdWebImage 设置图像给出“错误代码=-1003”并使用 CFNetwork 诊断日志“Err(-65554)”