Skip to content

Instantly share code, notes, and snippets.

@stevehenderson
Created October 1, 2013 02:37
Show Gist options
  • Save stevehenderson/6773166 to your computer and use it in GitHub Desktop.
Save stevehenderson/6773166 to your computer and use it in GitHub Desktop.
IOS Alert
- (IBAction)showalert:(id)sender {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"What Up"
message:@"Hello There"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles: nil];
[alert setAlertViewStyle:UIAlertViewStylePlainTextInput];
[alert show];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment