如何直接在uitableview中从最后一行到第一行?

时间:2011-09-28 07:44:43

标签: iphone

我正在使用UITableview.In,我在tableview的最后一行放置了一个按钮。当我们点击那个按钮时,我们如何去第一行。所以请告诉我如何解决这个问题。

1 个答案:

答案 0 :(得分:4)

使用此:

NSIndexPath *topIndexPath;
topIndexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[tableView scrollToRowAtIndexPath:topIndexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];