ios - 如何为所有 session 缓存 UIWebView 页面
<p><p>当页面没有变化时,我想第一次从网络加载页面,其他时间从缓存加载。</p>
<p>我的缓存有一些问题。 </p>
<p>我将此代码粘贴到 AppDelegate 中:</p>
<pre><code>NSURLCache *sharedCache = [ initWithMemoryCapacity:20 * 1024 * 1024
diskCapacity:100 * 1024 * 1024
diskPath:nil];
;
</code></pre>
<p>这就是我使用请求的方式:</p>
<pre><code>NSURLRequest *request = cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:2*60];
</code></pre>
<p>如果我留在应用程序中,它可以正常工作并从缓存中加载页面,但是当我关闭我的应用程序并再次加载它时,页面会再次从网络加载。我必须做什么,从缓存中加载它?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>SDURLCache</code> 是 NSURLCache 的替代品,但在 iOS 4 及更高版本上会保存到磁盘。</p>
<pre><code>- (void)prepareCache {
SDURLCache *cache = [ initWithMemoryCapacity:4 * 1024 * 1024
diskCapacity:20 * 1024 * 1024
diskPath:];
cache.minCacheInterval = 0;
;
NSLog(@"Cache is being logged to: %@", );
}
</code></pre>
<p>更多信息可以找到<a href="http://www.nsscreencast.com/episodes/15-http-caching" rel="noreferrer noopener nofollow">here:</a> </p></p>
<p style="font-size: 20px;">关于ios - 如何为所有 session 缓存 UIWebView 页面,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32502562/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32502562/
</a>
</p>
页:
[1]