Is there a way to detect if a UITextField exists using the Tag property? Essentially i have a number of textfields created dynamically and I want to tab through the fields using the return key on the keypad.

I am trying to use the below code form another post but 'textField.superview' returns null. I am creating the textfields programatically.

-(BOOL)textFieldShouldReturn:(UITextField*)textField;
{
  NSInteger nextTag = textField.tag + 1;
  // Try to find next responder
  UIResponder* nextResponder = [textField.superview viewWithTag:nextTag];
  if (nextResponder) {
    // Found next responder, so set it.
    [nextResponder becomeFirstResponder];
  } else {
    // Not found, so remove keyboard.
     [textField resignFirstResponder];
  }
  return NO; // We do not want UITextField to insert line-breaks.
}
link|improve this question

57% accept rate
I think my answer works for u – EXC_BAD_ACCESS Nov 18 '11 at 9:28
feedback

3 Answers

up vote 2 down vote accepted

You can directly check like this

       -(BOOL)textFieldShouldReturn:(UITextField*)textField {
             if (textField.tag == 1) {
             //Do the stuff what you want here
             }
        }

For setting the tag

        textFieldName.tag = 1;
link|improve this answer
What I need to do is check if a textfield exists with a given int using the tag. I set the tag when I create them. So I will do something like NSInteger nextTag = textField.tag + 1; in textFieldShouldReturn but I then need to see if a field with nextTag value actually exists. How can I do that? – camslaz Nov 18 '11 at 9:07
feedback

Did you set the Tag of the text fields? The tag field is not set automatically, you have to set it yourself when you create the text field so you can identify it later. If you don't set it, they all default to 0 - so you will never find any field with a text > 0.

link|improve this answer
feedback

You can use isKindofClass: method.You can do like this

 if ([[textField.superview viewWithTag:nextTag] isKindOfClass:[UITextField class]])
  {
    // Found next responder, so set it.
    [(UITextField *)[textField.superview viewWithTag:nextTag] becomeFirstResponder];
  } else {
    // Not found, so remove keyboard.
     [textField resignFirstResponder];
  }
  return NO; // We do not want UITextField to insert line-breaks.
}
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.