将导航从 UITabbarController 推送到 UIViewController

Posted

技术标签:

【中文标题】将导航从 UITabbarController 推送到 UIViewController【英文标题】:Push Navigate from UITabbarController to UIViewController 【发布时间】:2013-10-22 14:49:51 【问题描述】:

我正在使用UITabbarController,它有三个孩子UIViewController,分别命名为FirstViewControllerSecondViewControllerThirdViewController。我在FirstViewController 上有一个按钮。当我们点击按钮时,它需要将导航推送到FourthViewController。在这里,FourthViewController 在UITabBarController 内部导航。但我需要它导航出UITabBarController 而不是里面。

按钮目标操作

ForthViewController *share = [[ForthViewController alloc] init];
[self.navigationController pushViewController:share animated:YES];

谁能指导我正确的方式。在此先感谢..

【问题讨论】:

“我需要它导航出 UITabbarController 不在里面”是什么意思?... Goley 明白了我的意思,它确实有效。感谢您的关注.. 【参考方案1】:

试试这个:

ForthViewController *share = [[ForthViewController alloc] init];
[self.parentViewController.navigationController pushViewController:share animated:YES];

只要您的标签栏控制器位于导航控制器中,这会将您的视图控制器推送到该导航堆栈上。

【讨论】:

以上是关于将导航从 UITabbarController 推送到 UIViewController的主要内容,如果未能解决你的问题,请参考以下文章

将另一个视图控制器推送到 UITabBarController 视图中

嵌入在 NavigationController 中的 UITabBarController

从一个 UITabBarController 导航到另一个 UITabBarController

将 UIViewController 推送到 UINavigationController(也在 UITabBarController 中)

Flutter:使用导航器推送到新屏幕时保持底部导航栏

从UITabBarController内部呈现UINavigationController