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

link|improve this question

60% accept rate
feedback

2 Answers

up vote 53 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!

link|improve this answer
Thanks a million! :) – Namratha Feb 14 '11 at 5:08
3  
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 at 5:34
feedback

Your Answer

 
or
required, but never shown

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