Reputation: 1
when the tableview comes open I want to enter text in the field and then press done to move to the next cell for more text input
Upvotes: 0
Views: 31
Reputation: 6781
Conform to the UITextFieldDelegate
protocol.
Implement the textFieldShouldReturn
method.
Call .becomeFirstResponder
on the next textField. Remember to return true.
Upvotes: 1