Presenting a Modal View Controller hides the Navigation Bar

后端 未结 9 1019
灰色年华
灰色年华 2021-01-04 00:58

I have a navigation based app with a navigation bar, but there are a few instances where instead of pushing a view controller onto the stack, I need to present the view cont

9条回答
  •  盖世英雄少女心
    2021-01-04 01:13

    AddContactVC *addController =[self.storyboard instantiateViewControllerWithIdentifier:@"AddContactVC"];
    UINavigationController *navigationController = [[UINavigationController alloc]initWithRootViewController:addController];
    [self presentViewController:navigationController animated:YES completion: nil];
    

    working for me shows navigation bar

提交回复
热议问题