web-dev-qa-db-ja.com

swiftで電話番号を呼び出す

特定の番号ではなく、変数で呼び出されている番号を使用して番号を呼び出すか、少なくとも電話で番号をプルアップするように指示しようとしています。変数で呼び出されるこの番号は、パーサーを使用するか、WebサイトのSQLから取得して取得した番号です。関数で変数に格納されている電話番号に電話しようとしてボタンを作成しましたが、機能しませんでした。何でも感謝します!

    func callSellerPressed (sender: UIButton!){
 //(This is calls a specific number)UIApplication.sharedApplication().openURL(NSURL(string: "tel://######")!)

 // This is the code I'm using but its not working      
 UIApplication.sharedApplication().openURL(NSURL(scheme: NSString(), Host: "tel://", path: busPhone)!)

        }
65
Thomas Martinez

ちょうど試して:

if let url = NSURL(string: "tel://\(busPhone)") where UIApplication.sharedApplication().canOpenURL(url) {
  UIApplication.sharedApplication().openURL(url)
}

電話番号がbusPhoneにあると仮定します。

NSURLinit(string:)はOptionalを返すため、if letを使用することで、urlNSURLであることを確認します(initによって返されるNSURL?ではありません)。


Swift 3:の場合

if let url = URL(string: "tel://\(busPhone)"), UIApplication.shared.canOpenURL(url) {
    if #available(iOS 10, *) {
        UIApplication.shared.open(url)
    } else {
        UIApplication.shared.openURL(url)
    }
}

次の理由で、iOS 10以降を使用しているかどうかを確認する必要があります。

「openURL」はiOS 10.0で廃止されました

160
Thomas Müller

IOS 10の自己完結型ソリューションSwift

private func callNumber(phoneNumber:String) {

  if let phoneCallURL = URL(string: "tel://\(phoneNumber)") {

    let application:UIApplication = UIApplication.shared
    if (application.canOpenURL(phoneCallURL)) {
        application.open(phoneCallURL, options: [:], completionHandler: nil)
    }
  }
}

callNumber("7178881234")を使用して呼び出しを行うことができるはずです。

59
Zorayr

Swift 3.0およびiOS 10以前

func phone(phoneNum: String) {
    if let url = URL(string: "tel://\(phoneNum)") {
        if #available(iOS 10, *) {
            UIApplication.shared.open(url, options: [:], completionHandler: nil)
        } else {
            UIApplication.shared.openURL(url as URL)
        }
    }
}
11
Gandom

スイフト4

private func callNumber(phoneNumber:String) {

    if let phoneCallURL = URL(string: "telprompt://\(phoneNumber)") {

        let application:UIApplication = UIApplication.shared
        if (application.canOpenURL(phoneCallURL)) {
            if #available(iOS 10.0, *) {
                application.open(phoneCallURL, options: [:], completionHandler: nil)
            } else {
                // Fallback on earlier versions
                 application.openURL(phoneCallURL as URL)

            }
        }
    }
}
10
Teja

上記の答えは部分的には正しいですが、「tel://」では1つの問題しかありません。通話が終了すると、アプリではなくホーム画面に戻ります。 「telprompt://」を使用すると、アプリに戻ります。

var url:NSURL = NSURL(string: "telprompt://1234567891")!
UIApplication.sharedApplication().openURL(url)
9
dipen baks

さて私は助けを得て、それを理解しました。また、電話番号が有効でない場合に備えて、すてきな小さなアラートシステムを導入しました。私の問題は、私はそれを正しく呼んでいましたが、数字にはスペースと( "123 456-7890")などの不要な文字が含まれていたということです。 UIApplicationは、番号が( "1234567890")の場合にのみ機能または受け入れます。そのため、基本的には、数字のみを取得する新しい変数を作成して、スペースと無効な文字を削除します。次に、UIApplicationでこれらの番号を呼び出します。

func callSellerPressed (sender: UIButton!){
        var newPhone = ""

        for (var i = 0; i < countElements(busPhone); i++){

            var current:Int = i
            switch (busPhone[i]){
                case "0","1","2","3","4","5","6","7","8","9" : newPhone = newPhone + String(busPhone[i])
                default : println("Removed invalid character.")
            }
        }

        if  (busPhone.utf16Count > 1){

        UIApplication.sharedApplication().openURL(NSURL(string: "tel://" + newPhone)!)
        }
        else{
            let alert = UIAlertView()
            alert.title = "Sorry!"
            alert.message = "Phone number is not available for this business"
            alert.addButtonWithTitle("Ok")
                alert.show()
        }
        }
8
Thomas Martinez

Swift 3、iOS 10

func call(phoneNumber:String) {
        let cleanPhoneNumber = phoneNumber.components(separatedBy: CharacterSet.decimalDigits.inverted).joined(separator: "")
        let urlString:String = "tel://\(cleanPhoneNumber)"
        if let phoneCallURL = URL(string: urlString) {
            if (UIApplication.shared.canOpenURL(phoneCallURL)) {
                UIApplication.shared.open(phoneCallURL, options: [:], completionHandler: nil)
            }
        }
  }
6
LuAndre

アプリケーションでこのメソッドを使用していますが、正常に機能しています。これがあなたにも役立つことを願っています。

func makeCall(phone: String) {
    let formatedNumber = phone.componentsSeparatedByCharactersInSet(NSCharacterSet.decimalDigitCharacterSet().invertedSet).joinWithSeparator("")
    let phoneUrl = "tel://\(formatedNumber)"
    let url:NSURL = NSURL(string: phoneUrl)!
    UIApplication.sharedApplication().openURL(url)
}
6
Ayath Khan

Swift 3では、

if let url = URL(string:"tel://\(phoneNumber)"), UIApplication.shared.canOpenURL(url) {
     UIApplication.shared.openURL(url)
}
4
Venk

番号検証でSwift 3ソリューションを使用しています

var validPhoneNumber = ""
    phoneNumber.characters.forEach {(character) in
        switch character {
        case "0"..."9":
            validPhoneNumber.characters.append(character)
        default:
            break
        }
    }

    if UIApplication.shared.canOpenURL(URL(string: "tel://\(validNumber)")!){
        UIApplication.shared.openURL(URL(string: "tel://\(validNumber)")!)
    }
4
Emmett

これは、Swift 2.0を使用した@Tomの回答の更新です。-これは、使用しているCallComposerクラス全体です。

class CallComposer: NSObject {

var editedPhoneNumber = ""

func call(phoneNumber: String) -> Bool {

    if phoneNumber != "" {

        for i in number.characters {

            switch (i){
                case "0","1","2","3","4","5","6","7","8","9" : editedPhoneNumber = editedPhoneNumber + String(i)
                default : print("Removed invalid character.")
            }
        }

    let phone = "tel://" + editedPhoneNumber
        let url = NSURL(string: phone)
        if let url = url {
            UIApplication.sharedApplication().openURL(url)
        } else {
            print("There was an error")
        }
    } else {
        return false
    }

    return true
 }
}
3
Michael McKenna

openURL()はiOS 10で非推奨になりました。新しい構文は次のとおりです。

if let url = URL(string: "tel://\(busPhone)") {
    UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
2
Torre Lasley

Swift 3.0ソリューション:

let formatedNumber = phone.components(separatedBy: NSCharacterSet.decimalDigits.inverted).joined(separator: "")
print("calling \(formatedNumber)")
let phoneUrl = "tel://\(formatedNumber)"
let url:URL = URL(string: phoneUrl)!
UIApplication.shared.openURL(url)
1
mazorati

For Swift 3.

if let url = URL(string: "tel://\(number)"), UIApplication.shared.canOpenURL(url) {
    if #available(iOS 10, *) {
        UIApplication.shared.open(url)
    } else {
        UIApplication.shared.openURL(url)
    }
}
else {
    print("Your device doesn't support this feature.")
}
1
Hardik Thakkar

Swift 3.0およびiOS 10 +

UIApplication.shared.openURL(url)UIApplication.shared.open(_ url: URL, options:[:], completionHandler completion: nil)に変更されました

optionsおよびcompletion handlerはオプションであり、レンダリングは次のとおりです。

UIApplication.shared.open(url)

https://developer.Apple.com/reference/uikit/uiapplication/1648685-open

0
RLoniello

Swift 3.1および後方互換性のあるアプローチの場合、これを実行します。

@IBAction func phoneNumberButtonTouched(_ sender: Any) {
  if let number = place?.phoneNumber {
    makeCall(phoneNumber: number)
  }
}

func makeCall(phoneNumber: String) {
   let formattedNumber = phoneNumber.components(separatedBy: 
   NSCharacterSet.decimalDigits.inverted).joined(separator: "")

   let phoneUrl = "tel://\(formattedNumber)"
   let url:NSURL = NSURL(string: phoneUrl)!

   if #available(iOS 10, *) {
      UIApplication.shared.open(url as URL, options: [:], completionHandler: 
      nil)
   } else {
     UIApplication.shared.openURL(url as URL)
   }
}
0
Lauren Roth

電話番号にスペースが含まれている場合は、まずスペースを削除してください!次に、 受け入れられた回答 ソリューションを使用できます。

let numbersOnly = busPhone.replacingOccurrences(of: " ", with: "")

if let url = URL(string: "tel://\(numbersOnly)"), UIApplication.shared.canOpenURL(url) {
    if #available(iOS 10, *) {
        UIApplication.shared.open(url)
    } else {
        UIApplication.shared.openURL(url)
    }
}
0
catanore
let formatedNumber = phone.components(separatedBy: NSCharacterSet.decimalDigits.inverted).joined(separator: "")
print("calling \(formatedNumber)")
let phoneUrl = "tel://\(formatedNumber)"
let url:URL = URL(string: phoneUrl)!
UIApplication.shared.openURL(url)
0
Jithin Pankaj k

Scanner…を使用して、電話番号を有効なコンポーネントに減らす別の方法を次に示します。

let number = "+123 456-7890"

let scanner = Scanner(string: number)

let validCharacters = CharacterSet.decimalDigits
let startCharacters = validCharacters.union(CharacterSet(charactersIn: "+#"))

var digits: NSString?
var validNumber = ""
while !scanner.isAtEnd {
    if scanner.scanLocation == 0 {
        scanner.scanCharacters(from: startCharacters, into: &digits)
    } else {
        scanner.scanCharacters(from: validCharacters, into: &digits)
    }

    scanner.scanUpToCharacters(from: validCharacters, into: nil)
    if let digits = digits as? String {
        validNumber.append(digits)
    }
}

print(validNumber)

// +1234567890
0
Ashley Mills

Swift 4.2以降の場合

if let phoneCallURL = URL(string: "tel://\(01234567)"), UIApplication.shared.canOpenURL(phoneCallURL)
{
    UIApplication.shared.open(phoneCallURL, options: [:], completionHandler: nil)
}
0
iHarshil