The updated UIAlertView
now has a style which allows a Text input field in UIAlertView
i.e.
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
This works well but I wanted to init the input text with a defualt text like "sample".
I see that folks in the past have used undocumented api like (which works great)
[alert addTextFieldWithValue:@"sample text" label:@"Text Field"];
but since this is still not an official Apple public API I can't use it.
Any other way to handle this? I did try to init in willPresentAlertView
but text field seem to be read-only.
Thanks
The UIALertView
has a textFieldAtIndex:
method that returns the UITextField
object you want.
For a UIAlertViewStylePlainTextInput
, the index of the textfield is 0.
You can then set the placeholder (or text) property of the textfield:
UIAlertView *alert = .... UITextField *textField = [alert textFieldAtIndex:0]; textField.placeholder = @"your text";
UIAlertView Class Reference
Easy way to do
UIAlertView *alerView = [[UIAlertView alloc] initWithTitle:@"your title" message:@"your message" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
alerView.alertViewStyle = UIAlertViewStylePlainTextInput;
[[alerView textFieldAtIndex:0] setPlaceholder:@"placeholder text..."];
[alerView show];
Not tested, but I assume this would work:
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:...];
UITextField* textField = [alert textFieldAtIndex:0];
textField.text = @"sample";
[alert show];
For setting default value in uiAlertView this thing will work.
UIAlertView *alert = ....
UITextField *textField = [alert textFieldAtIndex:0];
[textField setText:@"My default text"];
[alert show];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With