Search code examples
iosobjective-cuinavigationbarpresentviewcontroller

Navigation bar not showing after presentViewController


Hi there I used this code to move in to new contorller just with code and without segue .

    UIStoryboard * mainstoryb = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController * vc = [mainstoryb instantiateViewControllerWithIdentifier:@"online_shop"];
[self presentViewController:vc animated:YES completion:nil];

how do I show Navigation bar or title bar on next view ?


Solution

  • You need to present NavigationController as below :

     UIViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:ContactUSVCID];
     UINavigationController *objNav = [[UINavigationController alloc] initWithRootViewController:vc];
    [self presentViewController:objNav animated:YES completion:nil];