0

有谁知道如何以编程方式将表格视图滚动到索引路径处的部分。我想要做的是有 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
4

1 回答 1

3

这是片段:

NSIndexPath * indexPath = [NSIndexPath indexPathForRow:row inSection:section];
[_tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
于 2012-10-25T12:55:40.733 回答