我如何跳转到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跳转。
答案 0 :(得分:1)
scrollToRowAtIndexPath:atScrollPosition:animated:
可以在详细视图的表视图上调用上述方法,使其滚动到新行
如果您只想选择下一行..您可以使用索引路径显式调用表视图didSelectRow
的委托方法。