ここで、次を使用して 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];
しかし、役に立たない、これの解決策は何ですか.....