UIAlertView

A UIAlertView represents a message box that pops up.

Example:

UIAlertView *alert = [[UIAlertView alloc]
      initWithTitle: @"main title"
      message: @"your message goes here"
      delegate: nil
      cancelButtonTitle:@"OK"
      otherButtonTitles:nil];

[alert show];

[alert release];