tableView将指定的section滑动到顶部

// 滚动到指定位置

[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:2] atScrollPosition:UITableViewScrollPositionTop animated:YES];  //其中indexPath为该section的第一行

你可能感兴趣的:(tableView将指定的section滑动到顶部)