openURL
เลิกใช้แล้วใน Swift3 ทุกคนสามารถให้ตัวอย่างของวิธีการเปลี่ยนopenURL:options:completionHandler:
ทำงานเมื่อพยายามที่จะเปิด URL?
openURL
เลิกใช้แล้วใน Swift3 ทุกคนสามารถให้ตัวอย่างของวิธีการเปลี่ยนopenURL:options:completionHandler:
ทำงานเมื่อพยายามที่จะเปิด 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)
}
String
แทนของคุณในURL
คำตอบข้างต้นถูกต้อง แต่ถ้าคุณต้องการตรวจสอบ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
ตรวจสอบเอกสารประกอบของ Appleเพื่อดูรายละเอียดเพิ่มเติม
หากคุณต้องการเปิดภายในแอพแทนการออกจากแอพคุณสามารถนำเข้า SafariServicesและใช้งานได้
import UIKit
import SafariServices
let url = URL(string: "https://www.google.com")
let vc = SFSafariViewController(url: url!)
present(vc, animated: true, completion: nil)
รุ่นSwift 3
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)
}
}
replacingOccurrences
คุณสามารถใช้การแสดงออกปกติด้วย
ฉันใช้ 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.
}
};
import UIKit
import SafariServices
let url = URL(string: "https://sprotechs.com")
let vc = SFSafariViewController(url: url!)
present(vc, animated: true, completion: nil)