Skip to content

Instantly share code, notes, and snippets.

@ivangodfather
Last active August 29, 2015 14:16
Show Gist options
  • Save ivangodfather/dfd7e2bb3751d62d8818 to your computer and use it in GitHub Desktop.
Save ivangodfather/dfd7e2bb3751d62d8818 to your computer and use it in GitHub Desktop.
class TestVC: UIViewController {
@IBOutlet weak var container: UIView! // Outlet to container on IB
override func viewDidLoad() {
super.viewDidLoad()
let vcToAdd = storyboard?.instantiateViewControllerWithIdentifier("vcToAdd") as UIViewController
self.container = vcToAdd.view
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment