If you want to scroll the tableview to the top row or bottom row right after it appears. Then do one line code to achieve this.
Scroll table to the bottom row position
[_tableViews setContentOffset:CGPointMake(0, CGFLOAT_MAX)];
Scroll table to the top row position
[_tableViews setContentOffset:CGPointMake(0, CGFLOAT_MIN)];
0 Comment(s)