如何使用pushcontroller访问RootViewController?

时间:2011-01-27 00:12:47

标签: iphone xcode

通过下面的代码,我将从firstView转移到RootViewController。

RootViewController *controller = [[RootViewController alloc] 
                              initWithNibName:@"RootView" bundle:nil];
[self.navigationController popToRootViewControllerAnimated:YES];      
[controller release];

现在,如何使用push从上一个View移动到RootViewController,而不是使用pop ?????  我们要改变流行推动?  任何人都可以帮助建议这个?????

的代码

1 个答案:

答案 0 :(得分:0)

popToRootViewControllerAnimated将弹出到堆栈的开头。

myRoot -> firstView -> secondView -> thirdView

如果您在popToRootViewControllerAnimated中使用thirdView,则会弹出myRoot