You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A different way to handle the issue #76. Because it is preferable to stick with SFSafariWebView instead of opening Safari. Cc @nathanfallet.
UIApplication.shared.open(url, options:[.universalLinksOnly: true]){(success)in
if !success {
// not a universal link or app not installed, opening in Safari Web View instead
letsafariViewController=SFSafariViewController(url: url, configuration: config)
safariViewController.present(vc, animated: true)}}
A different way to handle the issue #76. Because it is preferable to stick with SFSafariWebView instead of opening Safari. Cc @nathanfallet.
Source: https://recoursive.com/2019/02/22/preflight_universal_links/
The text was updated successfully, but these errors were encountered: