处理 SplitView 中的视图
处理在分割视图中选择根视图的每一行时必须显示不同视图(由不同视图控制器控制)的情况的正确方法是什么?
What is the correct method to handle the scenario where we have to show different views(controlled by different view controllers) on selecting each row of the rootview in a splitview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 RootViewController 中,您有一个名为的表视图委托选择器:
- (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
Splitview 控制器与 TableView + Nav 模式略有不同(它更多)就像标签栏一样)。您必须更改 SplitViewController 的 viewControllers 属性才能设置所选行的 viewController。在 DetailViewController 中,您可以管理为该选择分配的内存。更多: http://developer.apple.com/library/ ios/#featuredarticles/ViewControllerPGforiPhoneOS/iPadControllers/iPadControllers.html
In RootViewController you have a table view delegate selector called:
- (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
Splitview controller is slightly different from the TableView + Nav pattern (it's more like the Tab bar). You must change the SplitViewController's viewControllers property to set the viewController for the selected row. In the DetailViewController you can manage the memory allocated for that selection. More: http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/iPadControllers/iPadControllers.html