pushViewController不起作用

时间:2013-08-31 15:27:03

标签: iphone pushviewcontroller

我有一个UIViewController,我想从这个视图导航到我的第二个视图控制器

SecondView *secondView=[[SecondView alloc] initWithNibName:@"SecondView" bundle:nil];
[self.navigationController pushViewController:secondView animated:YES];
[secondView release];

它不起作用。它什么都不做,没有错误。我缺少什么?

在Appdelegate文件中,我添加了一个navigationcontroller。

UINavigationController *navCtrlr = [[UINavigationController alloc]initWithRootViewController:self.viewController];
[self.window setRootViewController:navCtrlr];
navCtrlr.delegate = self;
navCtrlr.navigationBarHidden = YES;

1 个答案:

答案 0 :(得分:1)

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