Created
June 10, 2016 07:55
-
-
Save tinkertims/414721e4d79c476ba3ac11c6a2b6ed68 to your computer and use it in GitHub Desktop.
UIAlertView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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