You need to get a link to the desired storyboard
let aStoryboard = UIStoryboard(name: "storyboardName", bundle: nil)
Then create the required view controller
let vc = aStoryboard.instantiateViewControllerWithIdentifier("viewControllerIdentifier") as! UIViewController
azimov
source share