获取位于tableview顶部的section,取所有可见的Cell第一个则为最顶部的,然后根据cell获取indexPath,
NSUInteger sectionNumber =
[tableView indexPathForCell:_rightTableView.visibleCells.firstObject].section;
tableview滚动到指定的行:
[tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:indexPath.row] atScrollPosition:UITableViewScrollPositionTop animated:YES];