3

I want the user to make a call from my application

Something like this post, but instead of sending an email, make a call How can I send mail from an iPhone application

Tanks!

Community
  • 1
  • 1
caeycae
  • 1,137
  • 3
  • 12
  • 28

1 Answers1

8

NOTE: This will only work on an actual iPhone (not the simulator)

[[UIApplication sharedApplication] openURL: [NSURL URLWithString:@"tel:9995551234"]];
Sam Dolan
  • 31,966
  • 10
  • 88
  • 84