Skip to content

Instantly share code, notes, and snippets.

@y-ogi
Created March 30, 2015 02:32
Show Gist options
  • Save y-ogi/21a46fe0ab3ad85339c3 to your computer and use it in GitHub Desktop.
Save y-ogi/21a46fe0ab3ad85339c3 to your computer and use it in GitHub Desktop.
Create ViewController from storyboard programmatically
class func viewController() -> UIViewController {
let vc = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle()).instantiateViewControllerWithIdentifier("ViewController") as UIViewController
return vc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment