iOS滚动到UITableView中的一个部分

时间:2012-10-25 12:54:09

标签: ios uitableview

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

1 个答案:

答案 0 :(得分:3)

以下是摘录:

NSIndexPath * indexPath = [NSIndexPath indexPathForRow:row inSection:section];
[_tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];