Skip to content

Instantly share code, notes, and snippets.

@mborromeo
Created February 15, 2010 09:10
Show Gist options
  • Save mborromeo/304504 to your computer and use it in GitHub Desktop.
Save mborromeo/304504 to your computer and use it in GitHub Desktop.
[iPhone SDK] Shows a simple alert box
/*
Shows a simple alert box
*/
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Alert message"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment