WKWebView
does not open any links which have target="_blank"
a.k.a. 'Open in new Window' attribute in their HTML <a href>
-Tag.
Ios – Why is WKWebView not opening links with target=”_blank”
ioswkwebview
ioswkwebview
WKWebView
does not open any links which have target="_blank"
a.k.a. 'Open in new Window' attribute in their HTML <a href>
-Tag.
Best Answer
My solution is to cancel the navigation and load the request with loadRequest: again. This will be come the similar behavior like UIWebView which always open new window in the current frame.
Implement the
WKUIDelegate
delegate and set it to_webview.uiDelegate
. Then implement: