我正在尝试使用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"
中得到了空白任何人都可以告诉我我做错了吗
我已经检查了这个解决方案,但它没有显示进度,只是一个活动指标。我想知道已经下载了多少图像。