在iOS 8上共享NSURLCache和UIWebView

在iOS 7中,我能够将共享URL缓存设置为NSURLCache的子类,我创建的任何UIWebViews都会自动为每个请求使用该共享缓存.
// Set the URL cache and leave it set permanently
ExampleURLCache *cache = [[ExampleURLCache alloc] init];
[NSURLCache setSharedURLCache:cache];

但是,现在在iOS 8中,似乎UIWebView从共享缓存中拉出来并且cachedResponseForRequest永远不会被调用.

有没有人找到这个变化的文档,或者解决方法

解决方法

我今天遇到了同样的问题.它在ios7上没问题,在ios8上坏了.

诀窍是创建自己的缓存,这是你在didFinishLaunchingWithOptions中做的第一件事.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // IMPORTANT: call this line before anything else. Do not call [NSURLCache sharedCache] before this because that
    // creates a reference and then we can't create the new cache.
    NSURLCache *URLCache = [[NSURLCache alloc] initWithMemoryCapacity:4 * 1024 * 1024 diskCapacity:20 * 1024 * 1024 diskPath:nil];

    [NSURLCache setSharedURLCache:URLCache];

...

您可以在其他应用中看到此操作:

https://github.com/AFNetworking/AFNetworking/blob/master/Example/AppDelegate.m

这个网站虽然陈旧,却有更多信息说明为什么你甚至不应该在上面的代码之前调用[NSURLCache sharedInstance]:
http://inessential.com/2007/02/28/figured_it_the_heck_out

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...