在这里,我使用加载了 uiwebview 中的内容
[webView loadHTMLString:[theApp.contentArr objectAtIndex:spineIndex] baseURL:url];
回去之后我需要清除缓存
在这里,我尝试了这些方法来清除缓存:
[webView stringByEvaluatingJavaScriptFromString:@"document.body.innerHTML = \"\";"];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"about:blank"]]];
// remove all cached responses
[[NSURLCache sharedURLCache] removeAllCachedResponses];
// set an empty cache
NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];
但是没用,有什么办法解决这个问题.....