keep getting this error for this code I used breakpoints it crashes at
GameSelect *selectGame = [[GameSelect alloc] initWithNibName:nil bundle:nil];
I don't know what's going on i am simply switching from one nib to another nib
- (IBAction)playButtonPressed:(UIButton *)sender {
GameSelect *selectGame = [[GameSelect alloc] initWithNibName:nil bundle:nil];
selectGame.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:selectGame animated:YES];
}