建议用这个
[_tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:NO];
下面两个有时候不管用:
[_tableView setContentOffset:CGPointMake(0,0) animated:YES];
[_tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];
网友评论