Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. let storyboard = UIStoryboard(name: "your_storyboard_name_here", bundle: nil)
  2.  
  3. let root = storyboard.instantiateViewControllerWithIdentifier("root") as! UINavigationController
  4.  
  5. let destination = storyboard.instantiateViewControllerWithIdentifier("main_vc")
  6.  
  7. root.pushViewController(destination, animated: false)
  8.  
  9. self.window?.rootViewController = root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement