Last active
August 29, 2015 14:16
-
-
Save ivangodfather/dfd7e2bb3751d62d8818 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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