presentViewController and displaying navigation bar

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

    If you use NavigationController in Swift 2.x

    let storyboard = UIStoryboard(name: "Main", bundle: nil)
    let targetViewController = storyboard.instantiateViewControllerWithIdentifier("targetViewControllerID") as? TargetViewController
    self.navigationController?.pushViewController(targetViewController!, animated: true)
    

提交回复
热议问题