Scenario is: uitableview with multiple sections.Sections have multiple textfields in it. Now i want to properly scroll tableview on UITextfield active. i.e. whenever keyboard appears on view. There r number of solution available..such as.
[ tableView scrollToRowAtIndexPath:"name of current cell" atScrollPosition:"position to scroll" animated:YES];
here let "position to scroll"=UITableViewScrollPositionMiddle. ... This is not 100% correct way,as design is not as required.
Another solution:
- (void)keyboardDidShow:(NSNotification*)aNotification
{
// Managing contentInset and scrollIndicatorInsets of UITableView here.
}..
This is also not correct. Any suggestions?