gpt4 book ai didi

ios - 如何为所有 session 缓存 UIWebView 页面

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:12:41 29 4
gpt4 key购买 nike

我想第一次从网络加载页面,其他时候在页面没有变化时从缓存加载页面。

我在缓存方面遇到了一些问题。

我将此代码粘贴到 AppDelegate 中:

NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:20 * 1024 * 1024
diskCapacity:100 * 1024 * 1024
diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];

这就是我使用请求的方式:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:dataURLString] cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:2*60];

如果我留在应用程序中,它工作正常并从缓存加载页面,但是当我关闭我的应用程序并再次加载它时,页面再次从网络加载。我必须做什么,才能从缓存中加载它?

最佳答案

SDURLCache 是 NSURLCache 的替代品,但在 iOS 4 及更高版本上会保存到磁盘。

- (void)prepareCache {
SDURLCache *cache = [[SDURLCache alloc] initWithMemoryCapacity:4 * 1024 * 1024
diskCapacity:20 * 1024 * 1024
diskPath:[SDURLCache defaultCachePath]];
cache.minCacheInterval = 0;
[NSURLCache setSharedURLCache:cache];
NSLog(@"Cache is being logged to: %@", [SDURLCache defaultCachePath]);
}

可以找到更多信息here:

关于ios - 如何为所有 session 缓存 UIWebView 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32502562/

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