简体   繁体   中英

App crashes on iPhone 4?

This code causes my app to crash on an iPhone 4 and on the simulator but works perfectly fine on a 3GS. Any ideas why this might be?

-(IBAction)startButtonClicked{

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

Have you checked out what's happening in screen's viewWillAppear and viewWillLoad methods? It looks like some issue in your init code there. Where are you opening a URL?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM