每次我按下按钮切换视图时,iOS 模拟器 5.1 版(272.21)都会关闭。知道为什么吗?
- (IBAction)SwitchView:(id)sender {
SecondView *second = [[SecondView alloc] initWithNibName:nil bundle:nil];
[self presentViewController:second animated:YES completion:NULL];
}
这就是 ViewController.m 上按钮的代码