我正在使用VOIP应用程序。我正在尝试通过 ios应用拨打电话,其中包含用(,)指示的停顿。
NSString *phoneNumber = [@"telprompt://" stringByAppendingString:finalNumber];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
在拨打号码时,未连接呼叫。我可以用什么来暂停我的号码。
答案 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)
}
并确保您的字符串没有空格。
干杯。