本文介绍了如何在 Swift3 中打开一个 URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
openURL
在 Swift3 中已被弃用.任何人都可以提供一些示例来说明在尝试打开 url 时替换 openURL:options:completionHandler:
是如何工作的吗?
openURL
has been deprecated in Swift3. Can anyone provide some examples of how the replacement openURL:options:completionHandler:
works when trying to open an url?
推荐答案
您只需要:
guard let url = URL(string: "http://www.google.com") else {
return //be safe
}
if #available(iOS 10.0, *) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
} else {
UIApplication.shared.openURL(url)
}
这篇关于如何在 Swift3 中打开一个 URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!