Skip to content

Instantly share code, notes, and snippets.

@tinkertims
Created June 10, 2016 07:55
Show Gist options
  • Save tinkertims/414721e4d79c476ba3ac11c6a2b6ed68 to your computer and use it in GitHub Desktop.
Save tinkertims/414721e4d79c476ba3ac11c6a2b6ed68 to your computer and use it in GitHub Desktop.
UIAlertView
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@”Title”
message:@”The body!”
delegate:nil
cancelButtonTitle:@”no!”
otherButtonTitles:nil];
[alert show];
[alert release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment