web-dev-qa-db-ja.com

Swiftを使用してiOS 10で電話をかける方法は?

ボタンがクリックされたときに、アプリが特定の番号を呼び出すことができるようにします。私はそれをグーグルしようとしましたが、今のところiOS 10用のものはないようです(openURLがなくなっています)。誰かが私にそれを行う方法の例を置くことができますか?例えば:

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

次のように呼び出すことができます。

 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のインスタンスをすべて削除してください。

125
Parth Adroja

仕事

電話番号検証で電話をかける

詳細

テスト済み:

  • 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

44

Swift 3向けに更新:

電話をかける場合は、以下の簡単なコード行で使用します。

//関数の定義:

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

//関数呼び出し:[コード内のどこでも使用]

self.makeAPhoneCall()

注:シミュレーターでは動作しないため、実際のデバイスでアプリを実行してください。

11
Kiran jadhav
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)
        }
    }
5
Pratik Patel

間違って私の答えが間違っていたので、これをチェックしてください:これを使用できます:

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以降であるかどうかを確認する必要がありますAs 'openURL'はiOS 10.0で廃止されました

5
Anjali jariwala

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

この助けを願っています。