I have a table view controller which doesn’t let me manually scroll to the last row. It automatically scrolls slightly up so I could never select the last 2-3 rows. Anyone experienced this problem? Should I set a minimum height for the table view to solve this? If so how?
Share
The first answer in the following post helped me fix this issue –
-[UITableView scrollToRowAtIndexPath:] scrolls, but goes back to 1st row
The initial CGSize for the UiTableView was set at a higher value (beyond the view bounds) and that was the issue. I upvoted that answer. Thanks.