我想在默认的Web浏览器中打开一个URL。但它没有回应。它不会打开默认的Web浏览器

问题描述 投票:6回答:2

完成块返回false值。我只是想打开www.google.com。这是我的代码。 Xcode版本9.4。

UIApplication.shared.open(URL(string: "www.google.com")!, options: [ : ]) 
 { (success) in

debugPrint(success)

}
ios swift
2个回答
4
投票
if let url = URL(string: "https://www.google.com") {
    UIApplication.shared.open(url, options: [:])
}

在URL之前添加https或http。


0
投票

你需要添加HTTPS。你的代码很好,但需要添加https

UIApplication.shared.open(URL(string: "https://www.google.com")!, options: [ : ]) 
 { (success) in

debugPrint(success)

}
© www.soinside.com 2019 - 2024. All rights reserved.