Try this out in your button action
-(IBAction)callPhone:(id)sender {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://1115550123"]];
}
Then in Interface Builder you should connect the TouchUpInside
event to the previously declared action (callPhone:
) and you are done.