Skip to content

Instantly share code, notes, and snippets.

@0x8badf00d
Created October 29, 2012 14:13
Show Gist options
  • Save 0x8badf00d/3973770 to your computer and use it in GitHub Desktop.
Save 0x8badf00d/3973770 to your computer and use it in GitHub Desktop.
UIAlertViewStylePlainTextInput
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Alert Message" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert textFieldAtIndex:0].borderStyle = UITextBorderStyleRoundedRect;
[alert show];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment