如何清除/刷新 Cocoa 应用程序中的WebView缓存?
特别是,我想清除本地样式表的缓存。
我尝试了以下方法无济于事:
// Tried this before loadRequest
[[NSURLCache sharedURLCache] removeAllCachedResponses];
// Also tried this before and after loadRequest
[webView.mainFrame reloadFromOrigin];
即使用新的替换WebView
它仍然使用缓存的样式表。