SDWebImage图像接收大小为NULL

时间:2014-06-12 02:35:11

标签: ios objective-c sdwebimage

我正在尝试使用SDWebImage显示进度视图,但是当我尝试下面的代码时,它会返回" 0" in" receivedSize"

[cell. ImageHotDish setImageWithURL:[NSURL URLWithString:picName]
     placeholderImage:[UIImage imageNamed:nil]
     options:0 progress:^(NSUInteger receivedSize, long long expectedSize) {
         NSLog(@"Downloaded = %@",receivedSize);
     } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType) {
         [cell.ImageHotDish setImageWithURL:[NSURL URLWithString:picName]];
     }];

我在" receivedSize"

中得到了空白

任何人都可以告诉我我做错了吗

我已经检查了这个解决方案,但它没有显示进度,只是一个活动指标。我想知道已经下载了多少图像。

Show activity indicator in SDWebImage

0 个答案:

没有答案