Skip to content

Instantly share code, notes, and snippets.

@awrowse
Created July 2, 2012 03:11
Show Gist options
  • Save awrowse/3030770 to your computer and use it in GitHub Desktop.
Save awrowse/3030770 to your computer and use it in GitHub Desktop.
UI Alert Box
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"You pushed cancel" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[alert show];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment