I am using this other SO answer for adding UITextFields to my UITableViewCells. 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?
I am using this other SO answer for adding UITextField s to my UITableViewCell
Share
Try assigning a
tagto 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.