如何跳转到 DetailViewController 的下一行?就像在邮件应用程序中一样
我将 MasterViewController 中的 indexPath 传递给 DetailViewController,然后为下一行创建了一个新的 indexPath:
NSIndexPath * newIndexPath = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];
我还找到了这个解决方案
How to jump to next row in detailview
,但这仅描述了如何从 MasterViewController 跳转。