-(IBAction)enterVeryBasics:(id)sender {
  VeryBasics *enterIntro = [[VeryBasics alloc]initWithNibName:Nil bundle:Nil];
  [self presentModalViewController:enterIntro animated:YES];
  [enterIntro release];
}


我这里有这段代码,在[self presentModalViewController:enterIntro animated:YES];上它给了我SIGABRT

我在同一个.m文件中有多个其他动作,但是它们没有相同的问题。

最佳答案

看一下UIViewController类的引用实例方法签名:

- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated


您的VeryBasics是UIViewController的子类吗?从您的代码来看,它看起来不像。

关于iphone - 切换 View objective-c 时的SIGABRT,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7768822/

10-13 04:04