vote up 1 vote down star
1

I want to accept password using an alert view. Following is the code I am using. But I am unable to figure out why does the keyboard pop out two times instead of once? Any ideas?

UIAlertView *passwordAlert = [[UIAlertView alloc]
		 initWithTitle:@"Enter Password" message:@"" 
		 delegate:self cancelButtonTitle:@"Cancel" 		  	
		 otherButtonTitles:@"Submit",nil];

[passwordAlert addTextFieldWithValue:@"" label:@"Password"];

UITextField *textfield = [passwordAlert textFieldAtIndex:0];
textfield.secureTextEntry = YES;
[passwordAlert setTag:10];
[passwordAlert show];
flag

38% accept rate

1 Answer

vote up 0 vote down check

Not entirely sure where addTextFieldWithValue is defined but you may want to check your .xib file to make sure you didn't place double views on the "stage" as in this post:

http://www.iphonedevsdk.com/forum/iphone-sdk-development/1479-uialertview-popping-up-twice.html

Also, check out this post. Looks like you may have to "tell the text field to become first responder before showing the alert view, you'll wind up with two keyboards":

http://www.iphonedevsdk.com/forum/iphone-sdk-development/2753-new-info-adding-text-fields-alerts.html#post14701

link|flag
Thanks man, that worked..! :-) – Neo Feb 10 at 12:12
No problem. I see that that method you're using is undocumented. Pretty rad! Is there a source somewhere for these methods? – Typeoneerror Feb 10 at 16:38

Your Answer

Get an OpenID
or

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