iOS清理WebView的缓存

  

    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];

 

posted @ 2017-02-28 10:28  sujianbo  阅读(3238)  评论(0编辑  收藏  举报