The first idea that came to mind ...
In cellForRow, set the text field tag as indexpath.row
Embed - (void)textViewDidBeginEditing:(UITextView *)textView
Based on this textView.tag, call selectrow
[self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:textView.tag inSection:<#(NSUInteger)#>] animated:<#(BOOL)#> scrollPosition:<#(UITableViewScrollPosition)#>]
source share