选项卡中带有导航控制器的选项卡栏应用程序。从视图交联

发布于 2024-10-22 02:17:27 字数 545 浏览 0 评论 0原文

这是我的第一个 iPhone 项目,一切进展顺利,但我遇到了一个小障碍,我似乎找不到一个好的解决方案。预先感谢所有花时间帮助我的人。

我有一个非常直接的选项卡栏应用程序,带有几个选项卡。每个选项卡定义一个由导航栏控制的小部分。客户现在想要在该子部分的视图之一中放置一个按钮,该按钮“深层链接”到不同部分(不同选项卡)的视图中。

举例说明:

Root
  - Tab 1 (Bedrock)
     - Navigation Controller
        - Fred View
        - Wilma View
        - Betty View
        - Barney View
   - Tab 2 (Mystery Machine)
     - NC
        - Scooby View
        - Shaggy View
        - Daphnie View
        ...

客户希望“Barney View”中有一个打开“Shaggy View”的按钮

实现此目的的最佳方法是什么?

This is my first iPhone project and all has been going very well but I've run into a small snag that I can't seem to find a good solution for. Thanks in advance to everyone who takes their time to help me out.

I have a very straight forward Tab Bar application with a few tabs. Each tab defines a subsection that is controlled with a Navigation Bar. The client now wants to place a button in one of the views of the subsection that "deep links" into a view of a different section ( different tab).

To Illustrate:

Root
  - Tab 1 (Bedrock)
     - Navigation Controller
        - Fred View
        - Wilma View
        - Betty View
        - Barney View
   - Tab 2 (Mystery Machine)
     - NC
        - Scooby View
        - Shaggy View
        - Daphnie View
        ...

The client would like a button in 'Barney View' that opens up 'Shaggy View'

What is the best way to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

拍不死你 2024-10-29 02:17:27

您将需要使用 UITabBarController 的 selectedViewControllerselectedIndex 属性来切换选项卡,并使用 UINavigationController 的 viewControllers 属性来设置视图堆栈。

You will want to use the selectedViewController or selectedIndex property of the UITabBarController to switch tabs, and the viewControllers property of the UINavigationController to set the view stack.

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