如何在同一个视图中呈现 UITableView 及其详细信息视图
我想在 iPad 应用程序中显示 UITableView 以及在同一视图中单击单元格的结果。我可以展示其中之一,但不能同时展示两者。这是设计思想:
因此,当我单击某个单元格时,图表会发生变化。
预先感谢,欢迎一切!
干杯
I'd like to show in an iPad application an UITableView and the result of clicking on Cell in the same View. I'm able to show one of them, but not both at the same time. Here's the design idea:
So when I click a cell, the chart will change.
Thanks in advance, everything is welcome!
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UITableView
可以用作附加到任何UIViewController
的子视图,因此这应该不是问题。您需要让视图控制器处理数据源和委托方法,以及详细视图和任何其他元素。A
UITableView
can be used as a subview attached to anyUIViewController
, so this shouldn't be a problem. You will need to make your view controller handle the data source and delegate methods, as well as the detail view and any other elements.您想要的可以通过使用 UISplitViewController 来完成。
您还可以查看苹果提供的“Master Detail Application”模板。
What you want can be accomplish by using a UISplitViewController.
You can also take a look at the "Master Detail Application" Template provided by apple.