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?
|
|
||||
|
|
|
Try assigning a |
|||||||||||
|
|
In addition to what Anh posted about using the tag value to find the next field and make it firstResponder... If you are in a UITableView, you also need to keep in mind that the next UITextField might not be on the screen or even in the view because it might be below the bottom of the screen. You might need to scroll that new row into view before making it first responder. What I did in a previous app to handle this was make the tag be a value that I could use to imply the NSIndexPath of the row so I could figure out which row it was in. Then you can scroll that row into view with:
However, this creates a race condition where the cell isn't visible yet when you call becomeFirstResponder, so I would delay the becomeFirstResponder until it is visible. I would set a value as a property in my class, like the row number, of the field which was supposed to become first responder and then in either cellForRowAtIndexPath or willDisplayCell:forRowAtIndexPath when I'm about to display that cell I would call becomeFirstResponder on the textfield THEN... because then it is guaranteed to exist. |
|||||||||
|
|
This worked well for me, would have to be tweaked to fit your needs though:
|
|||
|
|
I created a blogpost that tries to solve this problem once for all by calculating the next indexPath and accessing the cells' properties. This would work also in more sophisticated scenarios: http://blog.encomiabile.it/2013/02/08/how-to-activate-next-uitextfield-in-uitableview-ios/ I hope this helps! |
||||
|
|
|
Would do you like ..
|
||||
|
|
