Sub BrowserCacheReset
Dim no As NativeObject = WebView1
no.RunMethod("BrowserCacheClear", Null)
End Sub
#If OBJC
@end
#import <Foundation/Foundation.h>
@interface UIWebView (ClearCacheWebView)
- (void)BrowserCacheClear;
@end
@implementation UIWebView (ClearCaheWebView)
- (void)BrowserCacheClear
{
[[NSURLCache sharedURLCache] removeAllCachedResponses];
}
#End if