Programmatically navigate to another view controller/scene

后端 未结 19 3294
一向
一向 2020-11-27 11:29

I got an error message during navigating from first view controller to second view controller. My coding is like this one

let vc = LoginViewController(nibNam         


        
19条回答
  •  情书的邮戳
    2020-11-27 11:55

    let VC1 = self.storyboard!.instantiateViewController(withIdentifier: "MyCustomViewController") as! ViewController
    let navController = UINavigationController(rootViewController: VC1)
    self.present(navController, animated:true, completion: nil)
    

提交回复
热议问题