如何为所有会话缓存 UIWebView 页面
How to cache UIWebView page for all session
我想第一次从 Web 加载页面,其他时候在页面没有变化时从缓存加载。
我的缓存有一些问题。
我将此代码粘贴到 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:
我想第一次从 Web 加载页面,其他时候在页面没有变化时从缓存加载。
我的缓存有一些问题。
我将此代码粘贴到 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: