1

我有一个 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;
4

1 回答 1

1

您的视图控制器是否已经在导航控制器中,否则它将无法工作。在 self.navigationcontroller 上放一个 NSLog 看看它在打印什么

于 2013-08-31T16:06:19.383 回答