RT,有3种方法如下:
// 方法1
// 可直接滚动到 TB 最顶部,但是注意CGRectMake(0, 0, 0, 0)是无效的
[self.tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
// 方法2
[self.tableView setContentOffset:CGPointMake(0,0) animated:NO];
// 方法3
NSIndexPath* indexPat = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPat atScrollPosition:UITableViewScrollPositionBottom animated:YES];
网友评论