The WKWebView is not loading links. I am linking users to a privacy policy page, and the page has a group of links. The links are all pdfs hosted by wix. On safari and Chrom
One thing I can suggest (not sure if it will help, but too long for comment) is try to implement WKNavigationDelegate's decidePolicyFor:
// WKNavigationDelegate
func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
decisionHandler(.allow)
}
If it helps, then make that function more granular, i.e. which navigation you need to enable just for PDFs, not everything else in the world.