Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code to prompt the UIAlertView, with Textfield:

UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"New List Item", @"new_list_dialog")
                                                      message:@"this gets covered" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];
[myTextField setBackgroundColor:[UIColor whiteColor]];
[myAlertView addSubview:myTextField];
[myAlertView show];
[myAlertView release];

But I would like to add a get the textfield value, after the user click "OK", and after the user click , I want to call a method, how can I assign that to the myAlertView? Thank you.

share|improve this question
Just bear in mind this is not officially supported by the SDK and is liable to break any time Apple changes the UIAlertView implementation. And this isn't as unlikely as you think, all those hacked decimal keys on the numeric keypad broke on iOS 4, so this stuff does happen. – Mike Weller Sep 3 '10 at 9:00
but is there any "official" way to do so? – Ted Wong Sep 3 '10 at 9:10

4 Answers

up vote 17 down vote accepted

Declare the text field as global.And in the method of alertView clicked - (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex just take the value of the textfield and do the operations you want with it.....

Heres the revised code

UITextField *myTextField;
...
{

UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"New List Item", @"new_list_dialog")
                                                      message:@"this gets covered" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];
[myTextField setBackgroundColor:[UIColor whiteColor]];
[myAlertView addSubview:myTextField];
[myAlertView show];
[myAlertView release];
}
....
- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSLog(@"string entered=%@",myTextField.text);
}

For iOS 5 and later You can use alertViewStyle property of UIAlertView.

Please refer Hamed's Answer for the same

share|improve this answer
this is a very lazy answer. perhaps you should fully ANSWER the question – binnyb Feb 3 '11 at 19:46
3  
Sorry for dat...I have changed my answer @binnyb... hope its fine nw... – S P Varma Feb 3 '11 at 20:07

If you want to add a TextField to an UIAlertView, you can use this property (alertViewStyle) for UIAlertView:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" delegate:self cancelButtonTitle:@"Done" otherButtonTitles:nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
[alert release];

and in .h file of it add UIAlertViewDelegate as a protocol and implement the alertView:clickedButtonAtIndex delegate method in the .m file:

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    NSLog(@"%@", [alertView textFieldAtIndex:0].text);
}

I hope, it works for you!

Note: "Available in iOS 5.0 and later"

share|improve this answer
Are you sure that is good for the AppStore submissions?..i remember that textFieldAtIndex is a private method..time ago apple rejects me an app for this method...or maybe in iOS 5 is different(?) – Mat Oct 22 '11 at 13:26
Good to know, thanks. – Mat Oct 23 '11 at 0:37

You need a global variable for the UITextfield, you want to retrieve value in your AlertView Delegate method.I have created a post in my blog on the topic "How to add UITextField to UIAlertView from XIB". You can take a look at the following link.

http://creiapp.blogspot.com/2011/08/how-to-add-uitextfield-to-uialertview.html

share|improve this answer
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hey Welcome"

message:@"MSG" 

delegate:self

cancelButtonTitle:@"Ok Ji" 

otherButtonTitles:nil];

UITextField textField = [[UITextField alloc] initWithFrame:CGRectMake(15.0, 70.0, 200.0, 25.0)];

[textField setBackgroundColor:[UIColor whiteColor]];
[alert addSubview:textField];

[alert show];
[alert release];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.