Skip to content

Instantly share code, notes, and snippets.

@jplazcano87
Created December 11, 2015 19:23
Show Gist options
  • Save jplazcano87/e0c585ff79927be424c3 to your computer and use it in GitHub Desktop.
Save jplazcano87/e0c585ff79927be424c3 to your computer and use it in GitHub Desktop.
show viewcontroller with navigation bar
let storyboard : UIStoryboard = UIStoryboard(name: AccountStoryboard, bundle: nil)
let vc : WelcomeViewController = storyboard.instantiateViewControllerWithIdentifier("WelcomeID") as WelcomeViewController
vc.teststring = "hello"
let navigationController = UINavigationController(rootViewController: vc)
self.presentViewController(navigationController, animated: true, completion: nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment