如何清除/清空Cocoa應用程序中的WebView緩存?如何清除Cocoa中的WebView緩存?
特別是,我想清除本地樣式表的緩存。
我曾嘗試以下無濟於事:
// Tried this before loadRequest
[[NSURLCache sharedURLCache] removeAllCachedResponses];
// Also tried this before and after loadRequest
[webView.mainFrame reloadFromOrigin];
即使有一個新的還是使用緩存的樣式表更換WebView
。
看看這個討論http://stackoverflow.com/a/5606703/1578508 – lukaswelte
@lukaswelte沒有在那裏工作。 – hpique