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.