如何使用SDWebImage在服务器上更改映像时更新映像

时间:2015-11-30 10:25:14

标签: ios sdwebimage

我有静态的图片网址,但是当我编辑该图片并返回主屏幕时,图片没有被更改,它仍然从缓存中获取旧图像。

有没有办法更新缓存中的图像?

1 个答案:

答案 0 :(得分:0)

SDWebImage documentation上,这些人给出了你需要的代码:

[imageView sd_setImageWithURL:[NSURL URLWithString:@"https://graph.facebook.com/olivier.poitrey/picture"]
             placeholderImage:[UIImage imageNamed:@"avatar-placeholder.png"]
                      options:SDWebImageRefreshCached];