不断收到此代码的此错误,我使用了它崩溃的断点
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];
}