I have a tableView with a lot of field, like a form. The question is that when the user is changing to the next row, if the row is bellow the keyboard, the user does not see the label nor the text his writing.
I have try to use:
NSIndexPath *path = [NSIndexPath indexPathForRow:indexPath.row + 1 inSection:indexPath.section];
[self.theTable scrollToRowAtIndexPath:path atScrollPosition:UITableViewScrollPositionTop animated:YES];
but without success.
Let me tell you that the viewController is controlling a view, with a table inside it. The table is not the view itself.
How can I make the cell becomes visible, so that the user can see, even if that's the last row of the table (has about 20 rows)?