Skip to content

Instantly share code, notes, and snippets.

@iAmrSalman
Created July 28, 2017 08:16
Show Gist options
  • Save iAmrSalman/f491e81e3a7472cb5cbea3aef3fac90b to your computer and use it in GitHub Desktop.
Save iAmrSalman/f491e81e3a7472cb5cbea3aef3fac90b to your computer and use it in GitHub Desktop.
[Instantiate and Present a viewController] #swift3
let storyboard = UIStoryboard(name: "MyStoryboardName", bundle: nil)
let controller = storyboard.instantiateViewController(withIdentifier: "someViewController")
self.present(controller, animated: true, completion: nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment