如何使用Swift在iOS 10中拨打电话?

时间:2016-10-17 04:09:54

标签: ios swift swift3 ios10 phone-call

我希望我的应用能够在点击按钮时拨打某个号码。我已经尝试过google了,但到目前为止似乎没有iOS 10版本(openURL已经不见了)。有人能为我举个例子吗?比如:

@IBAction func callPoliceButton(_ sender: UIButton) {
    // Call the local Police department
}

6 个答案:

答案 0 :(得分:125)

您可以这样打电话:

 if let url = URL(string: "tel://\(number)") {
                UIApplication.shared.openURL(url)
            }

对于 Swift 3 + ,您可以使用

guard let number = URL(string: "tel://" + number) else { return }
UIApplication.shared.open(number)

OR

UIApplication.shared.open(number, options: [:], completionHandler: nil)

确保您已清除电话号码字符串,以删除()-space的所有实例。

答案 1 :(得分:44)

任务

通过电话号码验证拨打电话

详细

经过测试:

  • Xcode 9.2,Swift 4
  • Xcode 10.2(10E125),Swift 5

解决方案

extension String {

    enum RegularExpressions: String {
        case phone = "^\\s*(?:\\+?(\\d{1,3}))?([-. (]*(\\d{3})[-. )]*)?((\\d{3})[-. ]*(\\d{2,4})(?:[-.x ]*(\\d+))?)\\s*$"
    }

    func isValid(regex: RegularExpressions) -> Bool {
        return isValid(regex: regex.rawValue)
    }

    func isValid(regex: String) -> Bool {
        let matches = range(of: regex, options: .regularExpression)
        return matches != nil
    }

    func onlyDigits() -> String {
        let filtredUnicodeScalars = unicodeScalars.filter{CharacterSet.decimalDigits.contains($0)}
        return String(String.UnicodeScalarView(filtredUnicodeScalars))
    }

    func makeAColl() {
        if isValid(regex: .phone) {
            if let url = URL(string: "tel://\(self.onlyDigits())"), UIApplication.shared.canOpenURL(url) {
                if #available(iOS 10, *) {
                    UIApplication.shared.open(url)
                } else {
                    UIApplication.shared.openURL(url)
                }
            }
        }
    }
}

用法

"+1-(800)-123-4567".makeAColl()

测试样本

func test() {
    isPhone("blabla")
    isPhone("+1(222)333-44-55")
    isPhone("+42 555.123.4567")
    isPhone("+1-(800)-123-4567")
    isPhone("+7 555 1234567")
    isPhone("+7(926)1234567")
    isPhone("(926) 1234567")
    isPhone("+79261234567")
    isPhone("926 1234567")
    isPhone("9261234567")
    isPhone("1234567")
    isPhone("123-4567")
    isPhone("123-89-01")
    isPhone("495 1234567")
    isPhone("469 123 45 67")
    isPhone("8 (926) 1234567")
    isPhone("89261234567")
    isPhone("926.123.4567")
    isPhone("415-555-1234")
    isPhone("650-555-2345")
    isPhone("(416)555-3456")
    isPhone("202 555 4567")
    isPhone("4035555678")
    isPhone(" 1 416 555 9292")
}

private func isPhone(_ string: String) {
    let result = string.isValid(regex: .phone)
    print("\(result ? "✅" : "❌") \(string) | \(string.onlyDigits()) | \(result ? "[a phone number]" : "[not a phone number]")")
}

结果

enter image description here

答案 2 :(得分:11)

  

针对Swift 3进行了更新:

如果你想拨打电话,请使用以下简单的代码行:

//功能定义:

func makeAPhoneCall()  {
    let url: NSURL = URL(string: "TEL://1234567890")! as NSURL
    UIApplication.shared.open(url as URL, options: [:], completionHandler: nil)
}

//函数调用:[在代码中的任何位置使用]

self.makeAPhoneCall()

注意:请在真实设备上运行该应用,因为它无法在模拟器上运行。

答案 3 :(得分:5)

if let phoneCallURL:URL = URL(string: "tel:\(strPhoneNumber)") {
        let application:UIApplication = UIApplication.shared
        if (application.canOpenURL(phoneCallURL)) {
            let alertController = UIAlertController(title: "MyApp", message: "Are you sure you want to call \n\(self.strPhoneNumber)?", preferredStyle: .alert)
            let yesPressed = UIAlertAction(title: "Yes", style: .default, handler: { (action) in
                application.openURL(phoneCallURL)
            })
            let noPressed = UIAlertAction(title: "No", style: .default, handler: { (action) in

            })
            alertController.addAction(yesPressed)
            alertController.addAction(noPressed)
            present(alertController, animated: true, completion: nil)
        }
    }

答案 4 :(得分:5)

由于错误,我的答案放错了位置,请检查以下内容: 您可以使用:

guard let url = URL(string: "tel://\(yourNumber)") else {
return //be safe
}

if #available(iOS 10.0, *) {
UIApplication.shared.open(url)
} else {
UIApplication.shared.openURL(url)
}
  

我们需要检查我们是否在iOS 10或更高版本上,因为iOS 10.0中已弃用'openURL'

答案 5 :(得分:5)

在Swift 4.2中

func dialNumber(number : String) {

 if let url = URL(string: "tel://\(number)"),
   UIApplication.shared.canOpenURL(url) {
      if #available(iOS 10, *) {
        UIApplication.shared.open(url, options: [:], completionHandler:nil)
       } else {
           UIApplication.shared.openURL(url)
       }
   } else {
            // add error message here 
   }
}

像下面这样叫

dialNumber(number: "+921111111222")

希望获得帮助。