如何跳转到detailView的下一行?

时间:2013-10-07 16:55:17

标签: ios xcode tableview master-detail

我如何跳转到DetailViewController的下一行?就像在邮件应用程序中一样

我将indexPath从MasterViewController传递给DetailViewController,然后我为下一行创建了一个新的indexPath:

NSIndexPath * newIndexPath = [NSIndexPath  indexPathForRow:indexPath.row+1 inSection:indexPath.section];


我也找到了这个解决方案 How to jump to the next row in detailview ,但这仅描述了如何从MasterViewController跳转。

1 个答案:

答案 0 :(得分:1)

scrollToRowAtIndexPath:atScrollPosition:animated:

可以在详细视图的表视图上调用上述方法,使其滚动到新行

如果您只想选择下一行..您可以使用索引路径显式调用表视图didSelectRow的委托方法。