【发布时间】:2013-10-14 08:35:03
【问题描述】:
如何跳转到 DetailViewController 中的下一行?就像在邮件应用中一样
我将 MasterViewController 中的 indexPath 传递给 DetailViewController,然后为下一行创建了一个新的 indexPath:
NSIndexPath * newIndexPath = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];
我也找到了这个解决方案
How to jump to the next row in detailview
,但这只是描述,如何从 MasterViewController 跳转。
【问题讨论】:
标签: ios xcode tableview master-detail