通过下面的代码,我将从firstView转移到RootViewController。
RootViewController *controller = [[RootViewController alloc]
initWithNibName:@"RootView" bundle:nil];
[self.navigationController popToRootViewControllerAnimated:YES];
[controller release];
现在,如何使用push从上一个View移动到RootViewController,而不是使用pop ????? 我们要改变流行推动? 任何人都可以帮助建议这个?????
的代码答案 0 :(得分:0)
popToRootViewControllerAnimated
将弹出到堆栈的开头。
myRoot -> firstView -> secondView -> thirdView
如果您在popToRootViewControllerAnimated
中使用thirdView
,则会弹出myRoot
。