Ich WebView
öffne derzeit den Link in meiner App in a , suche aber nach einer Option zum Öffnen des Links in stattdessen Safari .
Ich WebView
öffne derzeit den Link in meiner App in a , suche aber nach einer Option zum Öffnen des Links in stattdessen Safari .
Antworten:
Es ist nicht "in Swift eingebrannt", aber Sie können Standardmethoden UIKit
verwenden, um es zu tun. Schauen Sie sich UIApplication's (veraltet) und an .openUrl(_:)
open(_:options:completionHandler:)
Swift 4 + Swift 5 (iOS 10 und höher)
guard let url = URL(string: "https://stackoverflow.com") else { return }
UIApplication.shared.open(url)
Swift 3 (iOS 9 und niedriger)
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)
Neu mit iOS 9 und höher können Sie dem Benutzer ein SFSafariViewController
(siehe Dokumentation hier ) präsentieren. Grundsätzlich erhalten Sie alle Vorteile, wenn Sie den Benutzer an Safari senden, ohne dass er Ihre App verlässt. So verwenden Sie den neuen SFSafariViewController einfach:
import SafariServices
und irgendwo in einem Event-Handler präsentieren Sie dem Benutzer den Safari View Controller wie folgt:
let svc = SFSafariViewController(url: url)
present(svc, animated: true, completion: nil)
Die Safari-Ansicht sieht ungefähr so aus:
sharedApplication
Eigenschaft in der App-Erweiterung ist verboten. Für mehr: developer.apple.com/library/archive/documentation/General/…
AKTUALISIERT für Swift 4: (Dank an Marco Weber)
if let requestUrl = NSURL(string: "http://www.iSecurityPlus.com") {
UIApplication.shared.openURL(requestUrl as URL)
}
ODER gehen Sie mit mehr schnellem Stil mit guard
:
guard let requestUrl = NSURL(string: "http://www.iSecurityPlus.com") else {
return
}
UIApplication.shared.openURL(requestUrl as URL)
Swift 3:
Sie können NSURL implizit als optional überprüfen, indem Sie:
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 & IOS 10.2
UIApplication.shared.open(URL(string: "http://www.stackoverflow.com")!, options: [:], completionHandler: nil)
Swift 3 & IOS 10.2
seit iOS 10 sollten Sie verwenden:
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: Überprüfen Sie mit, canOpneURL
ob es gültig ist, dann ist es geöffnet.
guard let url = URL(string: "https://iosdevcenters.blogspot.com/") else {
return
}
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
In 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)
}
}