我的应用需要拨号码,我知道telprompt
拨打后会返回应用。但它会提醒用户每次都想拨打一个号码,有没有办法直接拨打电话号码而不显示提醒视图?
答案 0 :(得分:4)
您可以使用以下代码拨打电话: -
NSString *value =@"9999999999";//your telnumber
NSURL *url = [[ NSURL alloc ] initWithString:[NSString stringWithFormat:@"tel://%@",value]];
NSLog(@"currunt number%@",url);
[[UIApplication sharedApplication] openURL:url];
答案 1 :(得分:1)
希望这会有所帮助
tel
在没有确认的情况下直接拨打给定的号码,并且在通话结束后没有返回应用程序,因此您可以使用telprompt
来代替它。
PhoneNumber=@"999999999";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@", PhoneNumber]]];