WebView加载不能更新问题

遇到一个问题,加载webView。

后台更新h5页面后,发现前端没有更新。

试了很多办法,最后:

最有效的方法:

//加载请求的时候忽略缓存

NSURLRequest*request = [NSURLRequestrequestWithURL:[NSURLURLWithString:URL]cachePolicy:NSURLRequestReloadIgnoringLocalCacheDatatimeoutInterval:5.0];

[self.webViewloadRequest:request];

你可能感兴趣的:(WebView加载不能更新问题)