Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Kalle Kod
37 PointsAlert view
How to make a alert view that says. Do you want to make a call : "cancel" "ok"
This is my code
<p>
- (IBAction)makeCall:(id)sender {
NSString *phoneNumber = self.phonecall; // dynamically assigned
NSString *phoneURLString = [NSString stringWithFormat:@"tel:%@", phoneNumber];
NSURL *phoneURL = [NSURL URLWithString:phoneURLString];
[[UIApplication sharedApplication] openURL:phoneURL];
if ([UIApplication instancesRespondToSelector:@selector(canOpenURL:)]) { NSURL *aURL = [NSURL URLWithString:@"tel:"]; if ([[UIApplication sharedApplication] canOpenURL:aURL]) { [[UIApplication sharedApplication] openURL:aURL]; } }
}
</p>
```
1 Answer

Sinan the Thinker
7,980 PointsThis is made very clear in making a ribbit app;
```UIAlertView *alertView = [[ UIAlertView alloc] initWithTitle:@"<Title>" message:@"Do you want to make a call?" delegate:nil cancelButtonTitle:@"cancel" otherButtonTitles: @"ok"];
[alertView show]; ```