我正在构建一个 iOS 应用程序,它将拨打电话卡访问号码,然后拨打目的地号码(不需要 PIN,因为服务提供商具有来电显示身份验证)。一切正常,但是当我拨打一个号码时,它会在拨号器和最近通话中显示 1231223344,,,,,11112222。
是否可以只显示 1231223344?我不想显示任何暂停 (,) 或后续拨打的号码。这是我到目前为止使用的代码:
-(IBAction)dialButtonPressed:(UIButton *)numberButton
{
phoneNumberLabel.text = phoneNumberString;
NSString *numberToDial = [NSString stringWithFormat:@"tel:1231223344,,,,,%@", phoneNumberString];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:numberToDial]];
NSLog(@"Dialing Phone Number");
}