嘿伙计我有一个RootViewController,它的nib文件是RootView.nib。无论如何,当你按下它时会有一个按钮,它会将你发送到我的SecondViewController(SecondViewController也有他的SecondViewController.nib文件)。
现在SecondViewController有一个IBOutlet UINavigationController,还有来自NavigationController的委托。
但我可以让应用程序从第二个视图开始导航,我尝试连接IB中的所有内容,但没有任何效果。
我需要帮助,应用程序需要从第二个视图导航。 最好的祝福 卡洛斯巴尔加斯
答案 0 :(得分:1)
nvm我已经解决了这个问题,我与IB无关。
刚刚将一个UINavigationController * nav添加到RootViewController,然后执行了此操作:
SecondViewController * second = [[SecondViewController alloc] initWithNibName:...];
nav = [[UINavigationController alloc] initWithRootViewController:second];
[self presentModalViewController:nav animated:NO];
[nav release]; [第二版];