今天碰到一个让UITableView 移动到指定位置的小需求,但并不是移动到指定cell,而是section。写了个demo看下效果,然后上代码:
核心代码是:
NSInteger selSection = btn.tag-10;
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:selSection];
[self.tableview scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];