tags:

views:

126

answers:

1

Hello All iphone developers ,

I am creating an iphone application in which i want the same facility as user taps on the call button and make a phone call to that person.

Can anyone provide me some code snippet or reference links.

+3  A: 

If you have the number you can try this

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://01234567"]];
epatel
ok thanks let me try.
hib