Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
I have doubts that initWithNibName is going to give you an object out of a storyboard. What do you see if you print the contents of NView just before you try to present it? – Phillip Mills Apr 2 '12 at 23:08
It says 0xdc4e640. But I found something: when it crashes, it says: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFTimer tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x6b983f0' – adr Apr 2 '12 at 23:14
One more thing: after setting delegates and datasources of the new storyboard(I disconnected them to see if they were the error), Xcode doesn't say SIGABRT anymore- now it says EXC_BAD_ACCES (code=2, address=0x8). – adr Apr 2 '12 at 23:17
Again, I'm guessing, but [__NSCFTimer tableView:numberOfRowsInSection:] looks a lot like your table view got released unexpectedly and its address was used to allocate another object. Can you run Instruments with zombie detection? – Phillip Mills Apr 3 '12 at 0:12
OK, I found where's the problem: the viewController2 had a .xib, so I deleted it and I made a new file with a .storyboard. Then I chose the identity inspector and I chose the class ViewController2. And that's all. I think that I have made something wrong because I've changed the class to empty, and I've made a new .xib file for ViewController2 and it doesn't work yet. (with a xib, like it was before, it doesn't work yet) – adr Apr 3 '12 at 11:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.