清除UIWebView的缓存

时间:2014-06-20 20:53:28   收藏:0   阅读:193
?//清除cookies
    NSHTTPCookie *cookie;
    NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
    for (cookie in [storage cookies])
    {
        [storage deleteCookie:cookie];
    }
 
    //清除UIWebView的缓存
    [[NSURLCache sharedURLCache] removeAllCachedResponses];?

清除UIWebView的缓存,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!