SDWebImage可以加载沙箱图片吗?

时间:2015-06-14 10:04:44

标签: ios sdwebimage webp

我的一个程序是使用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;

               }];

但错误......

那我该怎么做......?

0 个答案:

没有答案