我的一个程序是使用SDWebImage
加载webp图像。现在我有一个功能,从服务器下载webp图像并保存在沙箱中。但我不知道如何使用SDWebImage
来阅读沙盒中的webp图像。显示界面。
我尝试了以下内容:
[self.img1 sd_setImageWithURL:
[NSURL fileURLWithPath:[cachesDir stringByAppendingPathComponent:
[NSString stringWithFormat:@"JsonCache"]]]//local picture
placeholderImage:img
options:SDWebImageLowPriority
progress:^(NSInteger receivedSize, NSInteger expectedSize) {
}
completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
self.img1.image = image;
}];
但错误......
那我该怎么做......?