我有一个 UIViewController,我想从这个视图导航到我的第二个视图控制器
SecondView *secondView=[[SecondView alloc] initWithNibName:@"SecondView" bundle:nil];
[self.navigationController pushViewController:secondView animated:YES];
[secondView release];
它不起作用。它什么也不做,也没有错误。我错过了什么?
解决方案
在 Appdelegate 文件中,我添加了一个导航控制器。
UINavigationController *navCtrlr = [[UINavigationController alloc]initWithRootViewController:self.viewController];
[self.window setRootViewController:navCtrlr];
navCtrlr.delegate = self;
navCtrlr.navigationBarHidden = YES;