0

我正在使用其中有三个名为, , 的UITabbarController孩子。我有一个按钮。当我们点击按钮时,它需要将导航推送到FourthViewController。在这里,FourthViewController 在其内部导航。但我需要它从里面导航出来。UIViewControllerFirstViewControllerSecondViewControllerThirdViewControllerFirstViewControllerUITabBarControllerUITabBarController

按钮目标动作

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

任何人都可以指导我正确的方式。提前致谢..

4

1 回答 1

2

尝试这个:

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

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

于 2013-10-22T14:54:47.260 回答