如何在 splitview 控制器的详细视图中显示 tableview 中所选行的数据?
我已经设法将一些值读入表视图中,并将它们显示在 SplitViewController 的主视图中。
我想要做的是点击主视图的一行并在详细视图控制器上但在表视图中显示详细信息。
当我点击 MasterView 表中的行时,我似乎无法获取填充详细视图 TableView 的详细信息。
有什么建议吗?
提前致谢。
I've managed to read some values into a table view and display them in the Master View of a SplitViewController.
What I would like to do is to tap on a row of the Master View and display the details on the detailViewController but in a TableView.
When I tap on the row in the MasterView table, I can't seem to get the detail to populate the detailview TableView.
Any suggestions?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要执行以下操作:
tableView:didSelectRowAtIndexPath:
的实现中显示Here's what you need to do:
tableView:didSelectRowAtIndexPath:
retrieve the data for the selected row and set the corresponding properties in your detail view阅读这个基础教程。
http://doronkatz.com/ipad-programming-tutorial-hello-world
查看示例代码,看看您做错了什么或缺少
什么编辑:它是 splitViewController 的教程。
Read this basic tutorial.
http://doronkatz.com/ipad-programming-tutorial-hello-world
Go through the sample code and see what you are doing wrong or missing
EDIT: its a tutorial on splitViewController.
可能此代码对您
表视图
.h文件中的表视图.m文件中有所帮助
在DetailsViewController.h文件中的
may be this code is help for you
in table View .m file
in table view .h file
in DetailsViewController.h file