Question

i want to know whether their is any way in ios 4.0 and onwards to make a call from application without exiting the application.

I have worked on this and got to know that their is not any way till iOS 3.1. So I want to know is iOS 4 supports it or not. Need Some other solution than that of

UIApplication application] openURL:[NSURL URLWithString:@"tel://8005551212"]];

Was it helpful?

Solution

You can use

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://8005551212"]];

for iOS 4.x it works.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top