4

我的应用需要拨打一个号码,我知道telprompt拨号后会返回应用。但是每次想要拨打号码时都会提醒用户,有没有办法直接拨打电话而不显示提醒视图?

4

2 回答 2

4

您可以使用以下代码拨打电话:-

NSString *value =@"9999999999";//your telnumber
NSURL *url = [[ NSURL alloc ] initWithString:[NSString stringWithFormat:@"tel://%@",value]];

NSLog(@"currunt number%@",url);
[[UIApplication sharedApplication] openURL:url]; 
于 2012-12-05T09:19:19.933 回答
1

希望这会有所帮助

tel 直接拨打给定号码而不确认,通话结束后没有返回应用程序,因此您可以使用telprompt.

     PhoneNumber=@"999999999";
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@", PhoneNumber]]];
于 2014-08-26T13:15:02.207 回答