此代码导致我的应用程序在iPhone 4和模拟器上崩溃,但在3GS上运行完美。任何想法为什么会这样?
-(IBAction)startButtonClicked{
GameViewController *screen = [[GameViewController alloc] initWithNibName:nil bundle:nil];
screen.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:screen animated:YES];
[screen release];
}
答案 0 :(得分:0)
您是否查看过屏幕viewWillAppear和viewWillLoad方法中发生了什么?它看起来像你的初始化代码中的一些问题。你在哪里打开网址?