码迷,mamicode.com
首页 > 移动开发 > 详细

iOS webview 清除缓存

时间:2018-03-10 22:11:21      阅读:394      评论:0      收藏:0      [点我收藏+]

标签:cap   uiwebview   nil   div   缓存   gpo   blog   lca   res   

使用iOS的UIWebview会自动进行缓存,我们在开发的时候要记得清除Cookie和缓存。

_webView = nil;

[self cleanCacheAndCookie];

调用的方法代码如下:

/**清除缓存和cookie*/

- (void)cleanCacheAndCookie{

//清除cookies

NSHTTPCookie *cookie;

NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];

for (cookie in [storage cookies]){

[storage deleteCookie:cookie];

}

//清除UIWebView的缓存

NSURLCache * cache = [NSURLCache sharedURLCache];

[cache removeAllCachedResponses];

[cache setDiskCapacity:0];

[cache setMemoryCapacity:0];

}

iOS webview 清除缓存

标签:cap   uiwebview   nil   div   缓存   gpo   blog   lca   res   

原文地址:https://www.cnblogs.com/linusflow/p/8541899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!