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.

Im making a framework and I want to go back to a view controller that the publisher sets. Im using this code:

BV_APIViewControllerler *newView = [[BV_APIViewController alloc] initWithNibName:nil bundle:nil];
newView.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:newView animated:YES];
[newView release];

But I want to switch to a view controller they save to NSUserDefaults

share|improve this question

1 Answer

up vote 1 down vote accepted

What's the problem ? Juste read the name of the nib name stored in the defaults, and use it. The XIB file must reference BV_APIViewController as file's owner.

share|improve this answer
Not exactly what I was looking for but Ok – Sam Baumgarten Aug 16 '11 at 17:46
1  
@Sam Baumgarten : What did you look for precisely ? – Oliver Aug 16 '11 at 21:36
nvm my mistake I miss understood your answer. Its exactly what I was looking for – Sam Baumgarten Aug 17 '11 at 21:21

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.