I\'m trying to follow the View Controller Programming Guide for iOS to implement a container view in my application. At the moment I\'m just trying to get an initial first v
If FirstController is part of the storyboard, then you'll have to load it from the storyboard.
FirstController
Try doing
FirstController *firstController = [self.storyboard instantiateViewControllerWithIdentifier:@"yourIdentifier"];