gpt4 book ai didi

ios - AlamofireImage:如何清除所有图像缓存?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:11:32 28 4
gpt4 key购买 nike

如何使用 AlamofireImage 从缓存中清除所有图像。我已经完成了以下答案(发布在 stack overflow 中),但没有一个有效。

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 里,我只是放

pod 'AlamofireImage'

关于ios - AlamofireImage:如何清除所有图像缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43541214/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com