Hi can anyone suggest me How can I call through app automatically I mean I used following code in my app.
NSURL *url = [NSURL URLWithString:@"telprompt://123-4567-890"];
[[UIApplication sharedApplication] openURL:url];
Its working properly and after call end its returning back to app too but problem is it will not take call event automatically,we have to click call button.so is there any way to call without giving any user interaction??
Thanks in advnce…
Try
The
telpromptURL scheme is designed to ask the user to confirm the call. If you just usetel, the call will be initiated immediately.