通过暂停从ios应用程序调用

时间:2016-06-03 07:47:44

标签: ios voip phone-call tel telprompt

我正在使用VOIP应用程序。我正在尝试通过 ios应用拨打电话,其中包含用(,)指示的停顿。

      NSString *phoneNumber = [@"telprompt://" stringByAppendingString:finalNumber];
      [[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];

在拨打号码时,未连接呼叫。我可以用什么来暂停我的号码。

1 个答案:

答案 0 :(得分:0)

尝试使用 tel:// 计划:

目标-C

NSString *telUrl = [NSString stringWithFormat:@"tel://%@,%@", contactPhone, contactExtension];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:telUrl]];

夫特

    let formattedPhone = "tel://\(contactPhone),\(contactExtension)"
    if let phoneURL = NSURL(string:formattedPhone) {
        print(phoneURL)
        UIApplication.sharedApplication().openURL(phoneURL)
    }

并确保您的字符串没有空格。

干杯。