telprompt without alert
cocoa-touch, ios
Solution
you can make a call using bellow code:-
NSString *value =@"9999999999";//your telnumber
NSURL *url = [[ NSURL alloc ] initWithString:[NSString stringWithFormat:@"tel://%@",value]];
NSLog(@"currunt number%@",url);
[[UIApplication sharedApplication] openURL:url];
Problem
My app need to dial a number and I know that `telprompt` return back to app after dial. But it will alert user every time want to call a number, is there any way to direct call number without show a alert view?