I am using this other SO answer for adding UITextField
s to my UITableViewCell
s. However, I am now at a loss how I can let the user focus on the next item by using the next button. Any hints?
Try assigning a tag
to each UITextField. Once the Next button is pressed, calculate the next tag and use [[UIView viewWithTag:nextTag] becomeFirstResponder]
to change the focus to the next text field.