Created
October 29, 2012 14:13
-
-
Save 0x8badf00d/3973770 to your computer and use it in GitHub Desktop.
UIAlertViewStylePlainTextInput
This file contains hidden or 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:@"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