Skip to content

Instantly share code, notes, and snippets.

View asvdw's full-sized avatar

Denis Willems asvdw

View GitHub Profile
@asvdw
asvdw / gist:1ddc36410e3282780c6f72686fa19bb1
Created April 12, 2016 13:24 — forked from igordeoliveirasa/gist:d97272965b2cdd4d73c6
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)