web-dev-qa-db-fra.com

'openURL' était déconseillé dans iOS 10.0: veuillez utiliser openURL: options: complétementHandler: à la place dans Swift 3

J'ai des codes d'URL WebLink ouverts dans Swift3 mais quand je l'utilise il me donne cet avertissement;

'openURL' est déconseillé dans iOS 10.0: veuillez utiliser openURL: options: complétementHandler: à la place

Comment puis-je le résoudre, mes codes ci-dessous.

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

Merci.

31
SwiftDeveloper

Utilisez comme

 //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)

Pour plus de référence, consultez cet exemple lien .

82
Anbu.Karthik

Essayez d'utiliser ceci:

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