应用程序在iPhone 4上崩溃了吗?

时间:2010-08-05 17:29:35

标签: iphone xcode sdk crash iphone-3gs

此代码导致我的应用程序在iPhone 4和模拟器上崩溃,但在3GS上运行完美。任何想法为什么会这样?

-(IBAction)startButtonClicked{

 GameViewController *screen = [[GameViewController alloc] initWithNibName:nil bundle:nil];
 screen.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
 [self presentModalViewController:screen animated:YES];
 [screen release]; 
}

1 个答案:

答案 0 :(得分:0)

您是否查看过屏幕viewWillAppear和viewWillLoad方法中发生了什么?它看起来像你的初始化代码中的一些问题。你在哪里打开网址?