-4
let modalVC = messageViewController.instantiateViewControllerwithIdentifier(self.storyboard!)
self.present(modalVC, animated: true, completion: nil)
picciano
  • 22,341
  • 9
  • 69
  • 82

1 Answers1

0

For Pushing your Story board id :

Do not forget to replace the StoryBoard id and VC name with yours.

let objAboutTheSessionVC = self.storyboard?.instantiateViewController(withIdentifier: "AboutTheSessionVC") as! AboutTheSessionVC
    self.navigationController?.pushViewController(objAboutTheSessionVC, animated: true)
Abhirajsinh Thakore
  • 1,806
  • 2
  • 13
  • 23