使用暂停从 ios 个应用调用

Call from ios app with Pause

我正在使用 VOIP 应用程序。我正在尝试从我的 ios 应用程序 拨打电话,其中包含用 (,) 表示的暂停。

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

拨打号码时,电话未接通。我可以使用什么来暂停我的号码。

尝试使用tel://方案:

Objective-C

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

Swift

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

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

干杯。