Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to reset the scroll position of a UITableView?

I would like to completely reset the scroll position of a UITableView, so that every time I open it, it is displaying the top-most items. In other words, I would like to scroll the table view to the top every time it is opened.

I tried using the following piece of code, but it looks like I misunderstood the documentation:

- (void)viewWillAppear:(BOOL)animated {
    [tableView scrollToNearestSelectedRowAtScrollPosition:UITableViewScrollPositionTop animated:NO];
}

Is this the wrong approach here?

like image 303
jpm Avatar asked Nov 21 '08 04:11

jpm


2 Answers

August got the UITableView-specific method. Another way to do it is:

[tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];

This method is defined in UIScrollView, the parent class to UITableView. The above example tells it to scroll to the 1x1 box at 0,0 - the top left corner, in other words.

like image 184
Mike McMaster Avatar answered Oct 29 '22 16:10

Mike McMaster


The method you're using scrolls to (as the method name implies) the nearest selected row. In many cases, this won't be the top row. Instead, you want to use either

scrollToRowAtIndexPath:atScrollPosition:animated:

or

selectRowAtIndexPath:animated:scrollPosition:

where you use the index path of the row you want to scroll to. The second method actually selects a row, the first method simply scrolls to it.

like image 45
August Avatar answered Oct 29 '22 16:10

August