处理 SplitView 中的视图

发布于 2024-11-06 14:56:33 字数 57 浏览 0 评论 0原文

处理在分割视图中选择根视图的每一行时必须显示不同视图(由不同视图控制器控制)的情况的正确方法是什么?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾`听者〃 2024-11-13 14:56:33

在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文