UITableView回滚到顶部回滚到表的最顶端
- 方法一
NSIndexPath* indexPat = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPat atScrollPosition:UITableViewScrollPositionBottom animated:YES];
- 方法二
[self.tableView setContentOffset:CGPointMake(0,0) animated:YES];
- 方法三
[self.tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];
网友评论