presentViewController and displaying navigation bar

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

    Swift 3

            let vc0 : ViewController1 = ViewController1()
            let vc2: NavigationController1 = NavigationController1(rootViewController: vc0)
            self.present(vc2, animated: true, completion: nil)
    

提交回复
热议问题