菜鸟教程小白 发表于 2022-12-12 14:19:25

ios - SDWebImage 更改缓存MaxCacheAge


                                            <p><p>使用 SDWebImage 时如何更改静态值 <code>cacheMaxCacheAge</code>?什么方法好?我需要缓存图片 5 分钟。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 <strong>SDWebImage 5.0+</strong> 中将 maxCacheAge 重命名为 maxDiskAge。您可以像这样以秒为单位设置最大缓存时间。</p>

<p><strong>Objetive-c</strong></p>

<pre><code>.config.maxDiskAge = 60 * 5; //5 minutes
</code></pre>

<p><strong>Swift 4+</strong></p>

<pre><code>SDImageCache.shared.config.maxDiskAge = 60 * 5 //5 minutes
</code></pre>

<p>引用链接:<a href="https://github.com/SDWebImage/SDWebImage/wiki/5.0-Migration-guide" rel="noreferrer noopener nofollow">https://github.com/SDWebImage/SDWebImage/wiki/5.0-Migration-guide</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - SDWebImage 更改缓存MaxCacheAge,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28549211/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28549211/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - SDWebImage 更改缓存MaxCacheAge