up vote 14 down vote favorite
14
share [g+] share [fb]

I placed a UITextField into a UIAlertView and moved it up so the keyboard wouldn't cover it up with the following code:

[dialog setDelegate:self];
[dialog setTitle:@"Enter Name"];
[dialog addButtonWithTitle:@"Cancel"];
[dialog addButtonWithTitle:@"OK"];
UITextField * nameField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 45.0, 245.0, 25.0)];
[nameField setBackgroundColor:[UIColor whiteColor]];
[dialog addSubview:nameField];
CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, 100.0);
[dialog setTransform: moveUp];
[dialog show];

I also have the following code to deal with the alert view:

- (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex{	
	NSLog(@"%d", (int) buttonIndex);
	if (buttonIndex == 1) { // OK pushed
		NSLog([alert textField].text); // does not log anything
	} else {
		// Cancel pushed
}}

I also have a UIAlertViewExtended.h file that contains:

@class UITextField, UILabel;

@interface UIAlertView(Extended)

-(UITextField *)textField;

@end

My question is how do I get the text the user entered and how do I dismiss the keyboard?

Thanks, Ben

link|improve this question

69% accept rate
3  
iPhone OS 4.0 seems to do the transformation stuff automatically, probably we will have to introduce a check if your base SDK is 4.0 and the minimum SDK you will support is 3.0 so that the CGAffineTransform code is executed only if the native OS is 3.0 or 3.1, for iPhone OS 4.0 skip this part of code! – Raj Jul 19 '10 at 7:23
feedback

9 Answers

up vote 15 down vote accepted

For those who may care, here's a working solution:

UIAlertView* dialog = [[UIAlertView alloc] init];
[dialog setDelegate:self];
[dialog setTitle:@"Enter Name"];
[dialog setMessage:@" "];
[dialog addButtonWithTitle:@"Cancel"];
[dialog addButtonWithTitle:@"OK"];

nameField = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 45.0, 245.0, 25.0)];
[nameField setBackgroundColor:[UIColor whiteColor]];
[dialog addSubview:nameField];
CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, 100.0);
[dialog setTransform: moveUp];
[dialog show];
[dialog release];
[nameField release];

Make sure you've created UITextField * nameField; in your .h file, then you can get at the text the user typed in by doing: inputText = [nameField text];

in the - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex method.

important note: for iOS 4.0+, the CGAffineTransform is done automatically so you can leave that bit out if you're only targeting 4.0+. Otherwise, you will need to check which OS you are on and handle it accordingly.

link|improve this answer
Ok, that works pretty well, but how do I get the buttons to move down to make room for the text field? On my implementation (which starts as a copy/paste of yours), I have 4 buttons (Cancel, foo, bar, baz), and the text field overlays the cancel button. – Olie Dec 18 '08 at 16:42
6  
Hey! Why are you retaining the variable dialog? Isn't it already allocated by you? I might be wrong but it seems that you are leaking an object this way. The rule of thumb is that if you alloc an object then you must release it because it already has a retain count of 1. – inkredibl May 27 '09 at 13:59
1  
@inkredibl for the sake of posterity, I removed the retain which led to a memory leak. – Epaga Oct 24 '10 at 16:47
In iOS 4.2 this will create a alertview on top.Also removing the CGAffineTransform do not sort out the problem.Does anybody have some solution? – raaz Jan 29 '11 at 21:31
@raaz make sure your setMessage is " " and not "". It worked for me on 4.3 – sid Jan 20 at 23:21
feedback

It's worth checking out

http://junecloud.com/journal/code/displaying-a-password-or-text-entry-prompt-on-the-iphone.html?cmd=success#comment3870

For a complete and comprehensive solution.

link|improve this answer
The code at the URL is clean, easy to use. – freespace Mar 13 '09 at 3:35
2  
Great code. I recommend saving the text field in an instance variable. Then, you don't need to implement the text field delegate and you can have it resign first responder in alertView:willDismissWithButtonIndex: to get rid of the "wait_fences: failed to receive reply: 10004003" console messages. – gerry3 May 12 '10 at 6:56
Broken under simulator 4.3. It crashes the app. – nemesys Aug 17 '11 at 1:43
feedback

A simple way to locate the text field, without keeping an explicit reference to it, is to set its tag:

nameField.tag = ALERTVIEW_NAMEFIELD;

Make sure it is different from 0 and from other UIView object tags you may have, including the parent dialog!

Then inside the alertView:clickedButtonAtIndex: handler, you can retrieve your text field this way:

UITextField *nameField = (UITextField *)[alertView viewWithTag:ALERTVIEW_NAMEFIELD];
link|improve this answer
Neat, learn something new every day.. – pix0r Jan 22 '09 at 16:47
feedback

Found more clear solution. Check this code snippet out: Username and Password UITextFields in UIAlertView prompt

link|improve this answer
feedback

Check out this implementation: https://github.com/josecastillo/EGOTextFieldAlertView

link|improve this answer
feedback

A quite nice approach is, you can use the delegate methods of the UITextFieldDelegate to move the dialog up only when the keyboard is activated. See below.

- (void)textFieldDidBeginEditing:(UITextField *)textField {
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.5]; 
    [UIView setAnimationDelegate:self];

    CGAffineTransform moveUp = CGAffineTransformMakeTranslation(0.0, -20);
    [dialog setTransform: moveUp];

    [UIView commitAnimations];
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.5]; 
    [UIView setAnimationDelegate:self];

    CGAffineTransform moveDown = CGAffineTransformMakeTranslation(0.0, 0.0);
    [dialog setTransform: moveDown];

    [textField resignFirstResponder];

    return YES;
}
link|improve this answer
feedback

At the same time i would like to ask, How to align text vertically Cenetered in UItextField..

I found for a textfield with height , whose text is 'boldSystemFontOfSize:15' is placed in textfield with a upward shift. I want to make the text centered (vertically) irrespective of the fotnSize...

Thanks, SujithKris

link|improve this answer
1  
[textField setContentVerticalAlignment:UIControlContentVerticalAlignmentCenter]; – adam Nov 19 '09 at 9:37
Ask in a separate question. – Emil Sep 22 '10 at 21:43
feedback

Anyone supporting iOS 5.0 onwards there's this direct alertViewStyle property you can set:

-(void)showAlertWithTextField{
UIAlertView* dialog = [[UIAlertView alloc] initWithTitle:@"Enter Name" message:@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Add",nil]; 
    [dialog setAlertViewStyle:UIAlertViewStylePlainTextInput];
    [dialog show];
    [dialog release];
}

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    if(buttonIndex == 1)
        NSLog(@"%@",[[alertView textFieldAtIndex:0]text]);
}
link|improve this answer
feedback

This is actually only 1 more line to the regular UIAlertView code. Hope this helps!

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"test" message:@"This is a alert with a textfield" delegate:self cancelButtonTitle:@"YAY" otherButtonTitles:nil];
    alert.alertViewStyle = UIAlertViewStylePlainTextInput;
    [alert show];
    [alert release];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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