web-dev-qa-db-fra.com

comment ouvrir une URL dans Swift3

openURL est obsolète dans Swift3. Quelqu'un peut-il donner quelques exemples de la manière dont le remplacement openURL:options:completionHandler: fonctionne lorsque vous essayez d'ouvrir une URL?

133
Shane O'Seasnain

Tout ce dont tu as besoin c'est:

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)
}
354
Devran Cosmo Uenal

La réponse ci-dessus est correcte, mais si vous voulez vérifier canOpenUrl ou ne pas essayer comme ceci.

let url = URL(string: "http://www.facebook.com")!
if UIApplication.shared.canOpenURL(url) {
    UIApplication.shared.open(url, options: [:], completionHandler: nil)
    //If you want handle the completion block than 
    UIApplication.shared.open(url, options: [:], completionHandler: { (success) in
         print("Open url : \(success)")
    })
}

Remarque: Si vous ne voulez pas gérer l'achèvement, vous pouvez aussi écrire comme ceci.

UIApplication.shared.open(url, options: [:])

Pas besoin d'écrire completionHandler car il contient la valeur par défaut nil, consultez documentation Apple pour plus de détails.

33
Nirav D

Si vous souhaitez ouvrir l'application elle-même au lieu de la quitter, vous pouvez importer SafariServices et régler le problème.

import UIKit
import SafariServices

let url = URL(string: "https://www.google.com")
let vc = SFSafariViewController(url: url!)
present(vc, animated: true, completion: nil)
22
Chetan Rajagiri

Swift version

import UIKit

protocol PhoneCalling {
    func call(phoneNumber: String)
}

extension PhoneCalling {
    func call(phoneNumber: String) {
        let cleanNumber = phoneNumber.replacingOccurrences(of: " ", with: "").replacingOccurrences(of: "-", with: "")
        guard let number = URL(string: "telprompt://" + cleanNumber) else { return }

        UIApplication.shared.open(number, options: [:], completionHandler: nil)
    }
}
7
Demosthese
import UIKit 
import SafariServices 

let url = URL(string: "https://sprotechs.com")
let vc = SFSafariViewController(url: url!) 
present(vc, animated: true, completion: nil)
2
Salman Khan

J'utilise macOS Sierra (v10.12.1) Xcode v8.1 Swift 3.0.1 et voici ce qui a fonctionné pour moi dans ViewController.Swift:

//
//  ViewController.Swift
//  UIWebViewExample
//
//  Created by Scott Maretick on 1/2/17.
//  Copyright © 2017 Scott Maretick. All rights reserved.
//

import UIKit
import WebKit

class ViewController: UIViewController {

    //added this code
    @IBOutlet weak var webView: UIWebView!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Your webView code goes here
        let url = URL(string: "https://www.google.com")
        if UIApplication.shared.canOpenURL(url!) {
            UIApplication.shared.open(url!, options: [:], completionHandler: nil)
            //If you want handle the completion block than
            UIApplication.shared.open(url!, options: [:], completionHandler: { (success) in
                print("Open url : \(success)")
            })
        }
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


};
2
Scott Maretick