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 have a storyboard with a UINavigationController. The root view controller of the navigation controllers is called rootViewController.

I am trying to programmatically change the view controller (depending on other conditions) to another view controller called loginViewController.

I am trying to do this in the viewDidLoad from the rootViewController like this:

- (void)viewDidLoad
{

    [super viewDidLoad];

    loginViewController *viewController = [[loginViewController alloc] init];

    [self.navigationController pushViewController:viewController animated:YES];

}

I am not getting any errors but it's not working.

It just loads the navigation controller with the top nav back button but the rest of the screen is black. It's like it's not loading any view controller.

I am trying to figure out what I am doing wrong.

Any help with this would be great.

Thanks

share|improve this question
Did you add your viewController with UINavigationController in AppDelegate? like that UINavigationController *navigation = [[UINavigationController alloc] initWithRootViewController:self.viewController]; – i-Developer-i Feb 26 at 9:15
How is the loginViewControllers view initialized? With a xib? In code? From a storyboard? Sounds to me like you're pushing a ViewController without a view. – Undeph Feb 26 at 9:17
why are you pushing the viewcontroller in viewdidload? – peko Feb 26 at 9:22

2 Answers

up vote 4 down vote accepted

First add loginViewController class in storyboard and and connect ViewController class to loginViewController class and give identifier name as "identifier_Name".

- (void)viewDidLoad
{

    [super viewDidLoad];
    [self performSegueWithIdentifier:@"identifier_Name" sender:nil];
}

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if([[segue identifier] isEqualToString:@"identifier_Name"])
    {
        loginViewController *viewController = [segue destinationViewController];
    }
}
share|improve this answer
Thanks for the help. That worked. – Sequenzia Feb 26 at 16:09

If you're using storyboard, create your login view in the storyboard, link your rootVC to the loginVC with a segue, choose an identifier (for example: "goToLogin"). and then to go in the login view, and use:

[self performSegueWithIdentifier:@"goToLogin" sender:self];
share|improve this answer

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.