I insert all html into WKWebView, everything works until I find out that WKWebView cannot load the XML file on the local
$ .ajax ({
type: "GET",
url: "tags.xml",
dataType: "xml",
cache: false,
success: function (xml) {
},
error: function () {
alert ("An error occurred while processing XML file.");
}
});
my code is for UIWebView
// urlFolder is located locally in a temporary file: tmp / www / htmlFolder
// urlFile is located in the urlFolder: tmp / www / htmlFolder / index.html
// xml file is located in the urlFolder: tmp / www / htmlFolder / tags.xml
WKWebViewConfiguration * theConfiguration = [[WKWebViewConfiguration alloc] init];
_webView = [[WKWebView alloc] initWithFrame: self.view.frame configuration: theConfiguration];
[_webView loadFileURL: urlFile allowingReadAccessToURL: urlFolder];
[self.view addSubview: _webView];
Note. I am using beta version of Xcode7.1, Objective-C, ios9.1, WKWebView
source
share