Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我经常使用 prepareForSegue 将内容传递给下一个视图控制器。当我的表格视图不使用部分时没问题。但是我已经在我的最新项目中添加了部分。现在我不知道如何使用 prepareForSegue,因为它没有收到包含部分引用的 indexpath。我错过了什么?谢谢您的帮助!
在您的 prepareForSegue 方法中,只需使用:
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
并将其传递给destinationViewController。