Skip to content

Instantly share code, notes, and snippets.

@codeswimmer
Forked from 0x8badf00d/gist:3973770
Created October 29, 2012 14:15
Show Gist options
  • Save codeswimmer/3973781 to your computer and use it in GitHub Desktop.
Save codeswimmer/3973781 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