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 would like to add a login modal view in my master-detail project as segue. Some say this should work:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

        bool isLogged = YES;
        if (isLogged) {

 UINavigationController *navigationController = (UINavigationController*) self.window.rootViewController;
            UISplitViewController *yourStartingViewController = [[navigationController viewControllers] objectAtIndex:0];
            [yourStartingViewController performSegueWithIdentifier:@"login" sender:self];

}

but this results in exception, has no segue with login.

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.