美文网首页
UIWebView强制刷新

UIWebView强制刷新

作者: sttech | 来源:发表于2017-05-11 16:54 被阅读0次

    在开发中可能会遇到强制刷新WebView

    本人已经测 程序退出再次进入的时候可以完全删除缓存(Memory和Disk上的缓存)

       [[NSURLCache sharedURLCache] removeAllCachedResponses];
        NSURLCache * cache = [NSURLCache sharedURLCache];
        [cache removeAllCachedResponses];
        [cache setDiskCapacity:0];
        [cache setMemoryCapacity:0];
    

    清楚cookies

        //清除cookies
        NSHTTPCookie *cookie;
        NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
        for (cookie in [storage cookies]){
            [storage deleteCookie:cookie];
        }
    

    相关文章

      网友评论

          本文标题:UIWebView强制刷新

          本文链接:https://www.haomeiwen.com/subject/jiootxtx.html