gpt4 book ai didi

ios - 关闭应用程序后预取的 SDWebImage 不会保留

转载 作者:行者123 更新时间:2023-11-28 23:38:22 25 4
gpt4 key购买 nike

我正在使用 SDWebImage预取即

SDWebImagePrefetcher
.shared()
.prefetchURLs(
urls as [URL],
progress: nil,
completed: { finished, skipped in
onComplete([finished, skipped])
}
)

一切似乎都很好,所有预期的图像都被缓存并且在我使用我的应用程序时感觉响应迅速。我在获取这些图像时展示了一个加载程序,大约需要 4 - 5 秒才能完成。

我预计下次打开我的应用程序时,此预取将是即时的,因为图像应该已经在缓存中了吗?但是,如果我完全退出我的应用程序(从 iOS 事件应用程序 View 等关闭它)然后打开它,我必须再次等待同样的 4 - 5 秒。

我是不是没有理解这个方法的作用,也许还有另一种解决方案符合我的预期?

最佳答案

尝试强制将缓存类型写入磁盘,来源:

/**
A SDImageCacheType raw value which specify the cache type when the image has just been downloaded and will be stored to the cache. Specify `SDImageCacheTypeNone` to disable cache storage; `SDImageCacheTypeDisk` to store in disk cache only; `SDImageCacheTypeMemory` to store in memory only. And `SDImageCacheTypeAll` to store in both memory cache and disk cache.
If not provide or the value is invalid, we will use `SDImageCacheTypeAll`. (NSNumber)
*/
SDWebImageContextOption _Nonnull const SDWebImageContextStoreCacheType;

此处链接:https://github.com/SDWebImage/SDWebImage/blob/5.x/SDWebImage/SDWebImageDefine.h#L204-L208

关于ios - 关闭应用程序后预取的 SDWebImage 不会保留,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54279400/

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