Programmatically navigate to another view controller/scene

后端 未结 19 3304
一向
一向 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:57

    Try this one. Here "LoginViewController" is the storyboardID specified in storyboard.

    See below

    let secondViewController = self.storyboard?.instantiateViewControllerWithIdentifier("LoginViewController") as LoginViewController
    self.navigationController?.pushViewController(secondViewController, animated: true)
    

提交回复
热议问题