完成块返回false值。我只是想打开www.google.com。这是我的代码。 Xcode版本9.4。
UIApplication.shared.open(URL(string: "www.google.com")!, options: [ : ])
{ (success) in
debugPrint(success)
}
if let url = URL(string: "https://www.google.com") {
UIApplication.shared.open(url, options: [:])
}
在URL之前添加https或http。
你需要添加HTTPS
。你的代码很好,但需要添加https
UIApplication.shared.open(URL(string: "https://www.google.com")!, options: [ : ])
{ (success) in
debugPrint(success)
}