hello how can i remove website memory cache i found this code
how can i add it in inline object c
B4X:
struct ContentView: View {
var body: some View {
WebView(url: URL(string: "https://test.com")!)
.edgesIgnoringSafeArea(.all)
}
}
let websiteDataTypes = NSSet(array: [WKWebsiteDataTypeMemoryCache, WKWebsiteDataTypeDiskCache])
let date = Date(timeIntervalSince1970: 0)
WKWebsiteDataStore.default().removeData(ofTypes: websiteDataTypes as! Set<String>, modifiedSince: date) {
print("Cache cleared")
how can i add it in inline object c