如何使用AlamofireImage从缓存中清除所有图像。我经历了以下答案(发布在堆栈溢出中),但没有一个起作用。
How to clear AlamofireImage setImageWithURL cache
AlamofireImage cache?
AlamofireImage how to clean memory and cache
我尝试清除缓存的代码:
UIImageView.af_sharedImageDownloader.imageCache?.removeAllImages()
我也尝试过这个:
let sharedCache = URLCache(memoryCapacity: 0, diskCapacity: 0, diskPath: nil)
URLCache.shared = sharedCache
//Clear all cookies
if let sharedCookies = HTTPCookieStorage.shared.cookies {
for cookie in sharedCookies {
HTTPCookieStorage.shared.deleteCookie(cookie)
}
}
//-----------------------------------
URLCache.shared.removeAllCachedResponses()
但是它无法从缓存中删除所有图像。
注意:我已使用AlamofireImage 3.1加载图像。
最佳答案
我遇到了同样的问题,部分解决方案对我有用:
UIImageView.af_sharedImageDownloader.imageCache?.removeAllImages()
UIImageView.af_sharedImageDownloader.sessionManager.session.configuration.urlCache?.removeAllCachedResponses()
让我知道它是否对您也有用。
在豆荚里,我只是放
pod 'AlamofireImage'