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.

I have an RSS parser in a table view that pushes to the detail view when one of the rows is selected. I had it working fine in the old UI format of using Nib files, but I wanted to transfer everything to storyboard. I learned that storyboards and nibs were compatible, so I decided I would keep the same code, but put the tableview in the storyboard and have the detail view be its own nib. I linked everything up and it should be working, and its not giving me any errors, but its not. Is there anything that I missed, or are storyboards and nibs not compatible at all.

Edit:

- (id)initWithItem:(NSDictionary *)theItem {
if (self == [super initWithNibName:@"RssDetailController" bundle:nil]) {
    self.item = theItem;
    self.title = [item objectForKey:@"title"];
}

return self;

}

share|improve this question
"It's not working" isn't a helpful description of your problem. But just as a thought I believe the initializer that the storyboard calls is initWithCoder:. – NJones Mar 12 '12 at 17:56
The view just isnt pushing to the detailviewcontroller. I just wanted to know if there was anything that needs to be put in when transferring the view from a storyboard to a nib. – Sam Mar 12 '12 at 18:18
Show the code where you are pushing your detail view controller. – jonkroll Mar 12 '12 at 18:39
posted as an edit – Sam Mar 12 '12 at 18:46
This is not the push code. This is the initialization in RssDetailController. The push should be called from table view upon selecting a row. Did you hook up the table view in storyboard with its respective class? – Canopus Mar 12 '12 at 19:38

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.