let modalVC = messageViewController.instantiateViewControllerwithIdentifier(self.storyboard!)
self.present(modalVC, animated: true, completion: nil)
答案 0 :(得分:0)
推送您的故事板ID:
不要忘记用你的名字替换StoryBoard id和VC名称。
let objAboutTheSessionVC = self.storyboard?.instantiateViewController(withIdentifier: "AboutTheSessionVC") as! AboutTheSessionVC
self.navigationController?.pushViewController(objAboutTheSessionVC, animated: true)