在我的应用程序中,我使用以下代码导航到接收点击的新视图,它在iOS5上正常工作。但是,当我尝试使用ios6时,它显示当前视图并且不会进入下一个视图。我需要在此代码中为ios6更改任何内容。
请帮我解决。
scoreview *sview=[[scoreview alloc] initWithNibName:@"scoreview" bundle:nil];
[self.navigationController pushViewController:sview animated:YES];
答案 0 :(得分:0)
尝试以下几行:
scoreview *sview=[[scoreview alloc] initWithNibName:@"scoreview" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:sview animated:YES];
答案 1 :(得分:0)
请检查您的视图是否与UIInterfaceBuilder正确连接