Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save asvdw/1ddc36410e3282780c6f72686fa19bb1 to your computer and use it in GitHub Desktop.
Save asvdw/1ddc36410e3282780c6f72686fa19bb1 to your computer and use it in GitHub Desktop.
iOS - Swift - Show View Controller
let _storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = _storyboard.instantiateViewControllerWithIdentifier("countryTableViewController") as CountryTableViewController
vc.setupDelegate = self
self.showViewController(vc, sender: nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment