web-dev-qa-db-ja.com

swift3でURLを開く方法

openURLはSwift3では非推奨です。 URLを開こうとしたときに置換openURL:options:completionHandler:がどのように機能するかの例を誰かが提供できますか?

123

あなたが必要なのは:

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)
}
336

上記の答えは正しいですが、あなたがcanOpenUrlをチェックしたいのであれば、このようにしないでください。

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)")
    })
}

注: 補完したくない場合は、このように書くこともできます。

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

completionHandlerにはデフォルト値nilが含まれているので書く必要はありません。 アップルのドキュメント 詳細をチェックしてください。

32
Nirav D

アプリを終了せずにアプリ自体の内部を開く場合は、 SafariServicesをインポートして してください。

import UIKit
import SafariServices

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

Swift 3 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

私はmacOS Sierra(v10.12.1)Xcode v8.1 Swift 3.0.1を使っています、そしてこれが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
import UIKit 
import SafariServices 

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