presentViewController and displaying navigation bar

后端 未结 12 497
自闭症患者
自闭症患者 2020-12-07 13:27

I have a view controller hierarchy and the top-most controller is displayed as a modal and would like to know how to display the navigation bar when using

\         


        
12条回答
  •  情话喂你
    2020-12-07 14:27

    One solution

    DetailViewController *controller = [[DetailViewController alloc] initWithNibName:nil                                                                                 
                                            bundle:[NSBundle mainBundle]];  
    
    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:controller];
    navController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
    navController.modalPresentationStyle = UIModalPresentationCurrentContext;
    
    
    
    [self.navigationController presentViewController:navController 
                                            animated:YES 
                                            completion:nil];
    

提交回复
热议问题