ios 中清除webView的缓存

时间:2023-03-08 17:58:32

在UIWebView下,可以使用

  1. [[NSURLCache sharedURLCache] removeAllCachedResponses];//清除缓存

来实现清除缓存,但当替换使用WKWebView后,这个方法并不生效了(据说WKWebView不支持,我没找到官方说法~)

不过寻找了一下解决方法,分享一下

--------------IOS9以上----------------

WKWebsiteDataStore *dateStore = [WKWebsiteDataStore defaultDataStore];

[dateStore fetchDataRecordsOfTypes:[WKWebsiteDataStore allWebsiteDataTypes]

completionHandler:^(NSArray<WKWebsiteDataRecord *> * __nonnull records) {

for (WKWebsiteDataRecord *record  in records)

{

//                             if ( [record.displayName containsString:@"baidu"]) //取消备注,可以针对某域名清除,否则是全清

//                             {

[[WKWebsiteDataStore defaultDataStore] removeDataOfTypes:record.dataTypes

forDataRecords:@[record]

completionHandler:^{

NSLog(@"Cookies for %@ deleted successfully",record.displayName);

}];

//                             }

}

}];

但显然大多小伙伴们都需要支持IOS8的,所以尴尬的是上面的方法暂时用不到,所以还是老老实实的这么干XD

--------------IOS8以上---------------

NSString *libraryPath = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0];

NSString *cookiesFolderPath = [libraryPath stringByAppendingString:@"/Cookies"];

NSError *errors;

[[NSFileManager defaultManager] removeItemAtPath:cookiesFolderPath error:&errors];