清除WKWebView cookies的方法
更新时间:2017年04月28日 10:35:53 投稿:jingxian
下面小编就为大家带来一篇清除WKWebView cookies的方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
在UIWebView下,可以使用
[[NSURLCache sharedURLCache] removeAllCachedResponses];//清除缓存
WKWebView清除cookies的方法(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); }]; // } } }];
iOS9一下用这种方法:
NSString *libraryPath = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0]; NSString *cookiesFolderPath = [libraryPath stringByAppendingString:@"/Cookies"]; NSError *errors; [[NSFileManager defaultManager] removeItemAtPath:cookiesFolderPath error:&errors];
查看cookie
NSHTTPCookie *cookie; NSHTTPCookieStorage *cookieJar = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (cookie in [cookieJar cookies]) { NSLog(@"%@", cookie); }
以上这篇清除WKWebView cookies的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
iOS中Swift UISearchController仿微信搜索框
这篇文章主要介绍了iOS中Swift UISearchController仿微信搜索框效果,非常不错,具有参考借鉴价值,需要的朋友可以参考下2017-05-05
最新评论