有没有人知道如何以编程方式将表格视图滚动到索引路径的部分。我想要做的是拥有2个部分的tableview和一个if语句,例如
if loading = true scroll the table view up to hide the first section
when finished loading scroll table view back down to show first section
答案 0 :(得分:3)
以下是摘录:
NSIndexPath * indexPath = [NSIndexPath indexPathForRow:row inSection:section];
[_tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];