Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After a calculation, I want to display a pop up or alert box conveying a message to the user. Does anyone know where I can find more information about this?

Thanks

share|improve this question

2 Answers

up vote 177 down vote accepted

Yup, a UIAlertView is probably what you're looking for. Here's an example:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No network connection" 
                                                message:@"You must be connected to the internet to use this app." 
                                               delegate:nil 
                                      cancelButtonTitle:@"OK"
                                      otherButtonTitles:nil];
[alert show];
[alert release];

If you want to do something more fancy, say display a custom UI in your UIAlertView, you can subclass UIAlertView and put in custom UI components in the init method. If you want to respond to a button press after a UIAlertView appears, you can set the delegate above and implement the - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex method.

You might also want to look at the UIActionSheet.

Hope this helps!

share|improve this answer
Thanks a million! :) – Namratha Feb 14 '11 at 5:08
16  
Apple documentation says "The UIAlertView class is intended to be used as-is and does not support subclassing". developer.apple.com/library/ios/#documentation/uikit/reference/… – JOM Feb 6 '12 at 5:34
3  
Just a comment: with ARC enabled, the '[alert release]' is not needed (at least, the compiler says so). – Javier Sedano Oct 2 '12 at 10:02
1  
Subclassing UIAlertView is not supported iOS 4 onwards – Sourabh V Oct 29 '12 at 18:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.