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 am developing an application where i am creating some UITextField programatically, and I allow a maximum 1 character in the UITextField.

This is working perfectly.

But after writing the character, the user has to again tap in the next UITextField to present the keyboard

After typing 1 character the cursor should automatically move to next textfield.

How can I do that?

share|improve this question

4 Answers

up vote 11 down vote accepted

Catch the delegate that informs you your textfield has been changed. Check if the new length is 1. If it is, call becomeFirstResponder on the next field.

share|improve this answer
how is this done? can you show some sample code please? – quantum Nov 18 '10 at 16:08
[textField becomeFirstResponder] – akashivskyy Dec 27 '12 at 9:38

I have found this approach..

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

    NSString *newString = [textField.text stringByReplacingCharactersInRange:range withString:string];

    if(textField == textField1)
    {
        if (textField1.text.length > 0  && range.length == 0 )
        {
            return NO;
        }
        else {
            [textField1 setText:newString];
            [textField2 becomeFirstResponder];
            return YES;
        }
    }
    else if(textField == textField2)
    {
        if (textField2.text.length > 0  && range.length == 0 )
        {
            return NO;
        }else {
            [textField2 setText:newString];
            [textField3 becomeFirstResponder];
            return YES;
        }
    }
}

Hope this helps...

share|improve this answer

you've to just use

[textField'sName becomeFirstResponder];

share|improve this answer

This can be done in 3 simple steps:

  1. The current text field should resign for the cursor.
  2. Calculate the following text field
  3. Make the following text field gain the cursor.

In code:

if ([currentTextFieldWithCursor canResignFirstResponder]) [currentTextFieldWithCursor resignFirstResponder];
UITextField *followingTextField = // just get it!
if ([followingTextField canBecomeFirstResponder]) [followingTextField becomeFirstResponder];

Hope it helps.

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.