使用SDWebImage时如何更改静态值cacheMaxCacheAge
?什么方法好?我需要将图像缓存5分钟。
最佳答案
在 SDWebImage 5.0+中,将maxCacheAge重命名为maxDiskAge。您可以这样设置最大缓存时间(以秒为单位)。
对象-
[SDImageCache sharedImageCache].config.maxDiskAge = 60 * 5; //5 minutes
Swift 4+
SDImageCache.shared.config.maxDiskAge = 60 * 5 //5 minutes
参考链接:https://github.com/SDWebImage/SDWebImage/wiki/5.0-Migration-guide
关于ios - SDWebImage更改cacheMaxCacheAge,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28549211/