presentViewController and displaying navigation bar

后端 未结 12 499
自闭症患者
自闭症患者 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:29

    I use this code. It's working fine in iOS 8.

    MyProfileEditViewController *myprofileEdit=[self.storyboard instantiateViewControllerWithIdentifier:@"myprofileeditSid"];
    UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:myprofileEdit];
    [self presentViewController:navigationController animated:YES completion:^{}];
    

提交回复
热议问题