{ iPhone Code Snippets: Create Alert
{ June 10th, 2010 | By kianhean | Under: Programming | No Comments »UIAlertView *alert = [[UIAlertViewalloc] initWithTitle:@"Here's the title" message:@"Here's the alert message" delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil]; [alert show]; [alert release]
