列表视图滚动到顶端
// 方法1
[xxxTableView setContentOffset:CGPointZero animated:NO];
// 方法2
[xxxTableview scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO];
列表视图滚动到顶端
// 方法1
[xxxTableView setContentOffset:CGPointZero animated:NO];
// 方法2
[xxxTableview scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO];