How to clear UIWebView cache?

来源:互联网 发布:手机屏幕检测软件 编辑:程序博客网 时间:2024/04/27 19:56

 网上搜的的几种说法,也不知道对不对。

//to prevent internal caching of webpages in application 
NSURLCache *sharedCache= [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil]; 
[NSURLCache setSharedURLCache:sharedCache]; 
[sharedCache release]; 
sharedCache
= nil; 

 

原文网址:http://stackoverflow.com/questions/2523435/how-to-clear-uiwebview-cache

原创粉丝点击