//***************方法一***************//
[self.tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
//***************方法二***************//
这个在tableView中使用最好用的
[self.tableView setContentOffset:CGPointMake(0,0) animated:NO];
//***************方法三***************//
NSIndexPath* indexPat = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPat atScrollPosition:UITableViewScrollPositionBottom animated:YES];
网友评论