使用iOS的UIWebview会自动进行缓存,我们在开发的时候要记得清除Cookie和缓存。 _webView = nil; [self cleanCacheAndCookie]; 调用的方法代码如下: /**清除缓存和cookie*/ - (void)cleanCacheAndCookie{ // ...
分类:
移动开发 时间:
2018-03-10 22:11:21
阅读次数:
394
把这几行代码进来就行了,具体效果能不能达到需求你也不知道,没法测。[[NSURLCachesharedURLCache]removeAllCachedResponses];for(NSHTTPCookie*cookiein[[NSHTTPCookieStoragesharedHTTPCookieStorage]cookies]){[[NSHTTPCookieStoragesharedHTTPCookieStorage]deleteCookie:..
分类:
Web程序 时间:
2016-01-21 20:24:07
阅读次数:
163
NSURLCache * cache = [NSURLCache sharedURLCache]; [cache removeAllCachedResponses]; [cache setDiskCapacity:0]; [cache setMemoryCapacity:0];
分类:
Web程序 时间:
2015-08-30 17:16:10
阅读次数:
143
UIWebView清除Cookie://清除cookiesNSHTTPCookie *cookie;NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];for (cookie in [storage...
分类:
移动开发 时间:
2015-05-29 11:33:27
阅读次数:
402