gpt4 book ai didi

ios - 默认 SDWebImage 缓存大小

转载 作者:行者123 更新时间:2023-11-28 08:55:56 24 4
gpt4 key购买 nike

SDWebImage 的默认缓存大小。我需要它可以处理的文件数量和总文件大小。

最佳答案

如果你search通过 github 上的 SDWebImage 文件获取“maxCacheSize”,您会发现没有默认值。因为它是一个@property,所​​以它不会用垃圾数字初始化,但会被设置为0。来自Apple docs :

The alloc method has one other important task, which is to clear out the memory allocated for the object’s properties by setting them to zero. This avoids the usual problem of memory containing garbage from whatever was stored before...

因此根据清理代码中的条件判断,默认情况下没有限制:

if (self.maxCacheSize > 0 && currentCacheSize > self.maxCacheSize) {

//clean up code;

}

AFAIK 也没有您的应用程序可以使用的最大空间量。如果愿意,您可以用完设备上的所有可用空间。

关于ios - 默认 SDWebImage 缓存大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33050680/

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