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'm having trouble launching my app into the Storyboard from the initial LoginViewController that uses the FacebookSDK to allow login to the app, originally it loads into another XIB but my project is in Storyboard once logged in I want it to open that...

I think I've made a mess here, can anybody point out the obvious please?

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.mainViewController = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
RecordingsDetailViewController *_mainViewController = [UIStoryboard   instantiateViewControllerWithIdentifier:@"player1"];
self.navController = [[UINavigationController     alloc]initWithRootViewController:self.mainViewController];
self.window.rootViewController = self.navController;

Thanks.

share|improve this question

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.