Hello.
In my app i am trying migrate from UIWebView to WKWebView.
I have downloaded html file in App support dir. This file is fully enrypted, thus i have to use loadHTMLString method for loading it into webview.
Using UIWebView - everything works fine.
Using WKWebView - extrenal files (css, images, js) are not loaded.
Yes, I use correct baseURL.
If i use loadFileURL on non-enrypted file, all external files are loaded.
It works on simulator, not on real device.
It seems that "loadHTMLString" in WKWebView is not working properly - because of app sandbox?? Or am I missing something??
Thank you!