0

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

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

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


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

4

1 回答 1

1

scrollToRowAtIndexPath:atScrollPosition:动画:

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

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

于 2013-10-07T16:58:26.370 回答