クラッシュするブレークポイントを使用したこのコードでこのエラーが発生し続ける
GameSelect *selectGame = [[GameSelect alloc] initWithNibName:nil bundle:nil];
何が起こっているのかわかりません。あるニブから別のニブに切り替えているだけです。
- (IBAction)playButtonPressed:(UIButton *)sender {
GameSelect *selectGame = [[GameSelect alloc] initWithNibName:nil bundle:nil];
selectGame.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:selectGame animated:YES];
}