博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIWebView清除缓存和cookie
阅读量:6586 次
发布时间:2019-06-24

本文共 490 字,大约阅读时间需要 1 分钟。

hot3.png

/**清除缓存和cookie*/  

- (void)cleanCacheAndCookie{  

    //清除cookies  

   NSHTTPCookie *cookie;  

   NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];  

   for (cookie in [storage cookies]){  

  [storage deleteCookie:cookie];  

   }  

 //清除UIWebView的缓存  

 [[NSURLCache sharedURLCache] removeAllCachedResponses];  

   NSURLCache * cache = [NSURLCache sharedURLCache];  

   [cache removeAllCachedResponses];   [cache setDiskCapacity:0];      [cache setMemoryCapacity:0];  }  

转载于:https://my.oschina.net/5951008876/blog/875169

你可能感兴趣的文章
java B2B2C Springboot多租户电子商城系统(四):熔断器Hystrix
查看>>
比特币的矿工为什么讨厌开发组Core?
查看>>
阿里云爬虫风险管理产品商业化,为云端流量保驾护航
查看>>
Centos 6更新yum安装源
查看>>
mysql数据库字符集问题
查看>>
我的友情链接
查看>>
【swift3.0】【一秒就懂】【真机沙盒路径】
查看>>
数学之美笔记(十二)
查看>>
nginx 逻辑运算
查看>>
为MySQL选择合适的备份方式
查看>>
sersync文件实时同步
查看>>
数据库范式简单理解
查看>>
ExcelWithOdbc控件的使用
查看>>
HashMap
查看>>
我的友情链接
查看>>
linux基础介绍3-24
查看>>
开始写博客
查看>>
JAVA关键字 notice
查看>>
通过logrotate轮转nginx日志
查看>>
Linux 第三天: (07月26日) Linux使用帮助
查看>>