我正在使用此代码电话从 iPhone 直接呼叫特定号码。我的问题是是否有可能有一些中间拨号屏幕,所以当我单击此按钮时,它会通向该屏幕,通过单击呼叫按钮,我可以进行call.Dial 屏幕
应该像图像。
-(IBAction)call{
NSString *StrNumber = @"15553451290";
[[UIApplication sharedApplication] ![enter image description here][1]openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",StrNumber]]];
}