由于Cache,uiwebview崩溃,我如何删除UIwebview缓存?如果有人知道那么请帮助
- (void)webViewDidFinishLoad:(UIWebView *)webView {
headingLabel.text= @"Crop Browser";
spinner.hidden= true;
webview.hidden= false;
closeButton.hidden=YES;
NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];
[sharedCache release];
sharedCache = nil;
// remove all cached responses
[[NSURLCache sharedURLCache] removeAllCachedResponses];
// set an empty cache
NSLog(@"webfinish");
if(cropButton.tag!=1) //1 would mean the crop button is hidden manually (user pressed crop button)
cropButton.hidden= false;
}