0

在我的应用程序中,我使用以下代码导航到接收点击的新视图,它在 iOS5 上正常工作。但是,当我尝试使用 ios6 时,它显示的是当前视图并且不会进入下一个视图。我需要在这段代码中为 ios6 更改任何内容吗?

请帮我解决。

scoreview *sview=[[scoreview alloc]  initWithNibName:@"scoreview" bundle:nil];
[self.navigationController pushViewController:sview animated:YES];
4

2 回答 2

0

请检查您的视图是否与 UIInterfaceBuilder 正确连接

于 2012-12-06T09:14:51.327 回答
0

试试这些行:

 scoreview *sview=[[scoreview alloc]  initWithNibName:@"scoreview" bundle:[NSBundle mainBundle]];

[self.navigationController pushViewController:sview animated:YES];
于 2012-12-06T04:19:04.557 回答