Reputation: 2998
After implemented SFSafariViewController. when navigatin through a web site that contains a link with target=_blank or a javascript with window.open the Link is opened in the same view, I would like to open it in another View, or make it create windows automatically!
Upvotes: 0
Views: 2595
Reputation: 159
Safari View Controller does not support windows. You would be better off making your own mini web browser using WKWebView for total control and customisation as Apple also specifies in the docs: https://developer.apple.com/documentation/safariservices/sfsafariviewcontroller
Upvotes: 1