“openURL”在iOS 10.0中已弃用:请使用openURL:选项:完成处理程序:而不是Swift 3 [副本]

jecbmhm3  于 2022-12-27  发布在  iOS
关注(0)|答案(2)|浏览(149)
    • 此问题在此处已有答案**:

How to open an URL in Swift?(7个答案)
5年前关闭。
我在Swift3中打开weblink网址代码,但是当我使用它时,它给了我这个警告;
"openURL"在iOS 10.0中已弃用:请使用openURL:选项:完成处理程序:取而代之
我怎样才能解决它,我的代码在下面.

let myUrl = "http://www.google.com"
 if !myUrl.isEmpty {
                                UIApplication.shared.openURL(URL(string: "\(myUrl)")!)
                            }

谢谢你。

xdyibdwo

xdyibdwo1#

使用类似

//inside scope use this
 let myUrl = "http://www.google.com"
    if let url = URL(string: "\(myUrl)"), !url.absoluteString.isEmpty {
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
    }

    // or outside scope use this
    guard let url = URL(string: "\(myUrl)"), !url.absoluteString.isEmpty else {
       return
    }
     UIApplication.shared.open(url, options: [:], completionHandler: nil)

有关更多参考信息,请参见link示例。

hs1rzwqc

hs1rzwqc2#

尝试使用此:

UIApplication.shared.open(URL(string: "\(myUrl)")!)

相关问题