So I'm finishing my iPad app and I have a last time error: when I click a button in the mainstorybard, the iPad should load another .storyboard, form another viewController. But when I press the button, I get a SIGABRT. Why? What have I done wrong?
Here's the code of the button:
.m
#import "ViewController2.h"
-(IBAction)buttonpressed:(id)sender{
ViewController2 *NView = [[ViewController2 alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:NView animated:YES];
}
Remmember that I'm loading a .storyboard, not a .xib.