Actualmente estoy abriendo el enlace en mi aplicación en un WebView
, pero estoy buscando una opción para abrir el enlace en Safari .
Actualmente estoy abriendo el enlace en mi aplicación en un WebView
, pero estoy buscando una opción para abrir el enlace en Safari .
Respuestas:
No está "horneado en Swift", pero puede utilizar UIKit
métodos estándar para hacerlo. Eche un vistazo a UIApplication's (en desuso) y .openUrl(_:)
open(_:options:completionHandler:)
Swift 4 + Swift 5 (iOS 10 y superior)
guard let url = URL(string: "https://stackoverflow.com") else { return }
UIApplication.shared.open(url)
Swift 3 (iOS 9 y versiones inferiores)
guard let url = URL(string: "https://stackoverflow.com") else { return }
UIApplication.shared.openURL(url)
Swift 2.2
guard let url = URL(string: "https://stackoverflow.com") else { return }
UIApplication.sharedApplication().openURL(url)
Nuevo con iOS 9 y superior, puede presentarle al usuario un SFSafariViewController
(consulte la documentación aquí ). Básicamente obtienes todos los beneficios de enviar al usuario a Safari sin hacer que abandone tu aplicación. Para usar el nuevo SFSafariViewController solo:
import SafariServices
y en algún lugar de un controlador de eventos, presente al usuario el controlador de vista de safari de esta manera:
let svc = SFSafariViewController(url: url)
present(svc, animated: true, completion: nil)
La vista de safari se verá así:
sharedApplication
propiedad en la extensión de la aplicación está prohibido. Para más información: developer.apple.com/library/archive/documentation/General/…
ACTUALIZADO para Swift 4: (crédito a Marco Weber)
if let requestUrl = NSURL(string: "http://www.iSecurityPlus.com") {
UIApplication.shared.openURL(requestUrl as URL)
}
O vaya con más estilo rápido usando guard
:
guard let requestUrl = NSURL(string: "http://www.iSecurityPlus.com") else {
return
}
UIApplication.shared.openURL(requestUrl as URL)
Swift 3:
Puede marcar NSURL como opcional implícitamente:
if let requestUrl = NSURL(string: "http://www.iSecurityPlus.com") {
UIApplication.sharedApplication().openURL(requestUrl)
}
if let requestUrl = NSURL(string: "http://www.iSecurityPlus.com") { UIApplication.shared.openURL(requestUrl as URL) }
Swift 3 y IOS 10.2
UIApplication.shared.open(URL(string: "http://www.stackoverflow.com")!, options: [:], completionHandler: nil)
Swift 3 y IOS 10.2
desde iOS 10 deberías usar:
guard let url = URL(string: linkUrlString) else {
return
}
if #available(iOS 10.0, *) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
} else {
UIApplication.shared.openURL(url)
}
Swift 5
Swift 5: verifique canOpneURL
si es válido, entonces está abierto
guard let url = URL(string: "https://iosdevcenters.blogspot.com/") else {
return
}
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
En Swift 1.2:
@IBAction func openLink {
let pth = "http://www.google.com"
if let url = NSURL(string: pth){
UIApplication.sharedApplication().openURL(url)
}
IOS 11.2 Swift 3.1-4
let webView = WKWebView()
override func viewDidLoad() {
super.viewDidLoad()
guard let url = URL(string: "https://www.google.com") else { return }
webView.frame = view.bounds
webView.navigationDelegate = self
webView.load(URLRequest(url: url))
webView.autoresizingMask = [.flexibleWidth,.flexibleHeight]
view.addSubview(webView)
}
func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
if navigationAction.navigationType == .linkActivated {
if let url = navigationAction.request.url,
let host = url.host, !host.hasPrefix("www.google.com"),
UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url)
print(url)
print("Redirected to browser. No need to open it locally")
decisionHandler(.cancel)
} else {
print("Open it locally")
decisionHandler(.allow)
}
} else {
print("not a user click")
decisionHandler(.allow)
}
}