-(IBAction)enterVeryBasics:(id)sender {
VeryBasics *enterIntro = [[VeryBasics alloc]initWithNibName:Nil bundle:Nil];
[self presentModalViewController:enterIntro animated:YES];
[enterIntro release];
}
I have this code here, and on [self presentModalViewController:enterIntro animated:YES]; it’s giving me a SIGABRT
I have multiple other actions in the same .m file, but they aren’t having the same problem.
Look at UIViewController Class reference instance method signature:
Is your VeryBasics is Subclass of UIViewController ? It doesn’t look like from your code.