Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.