Linking child view controllers to a parent view controller within storyboard
问题 Can you associate child view controllers to a custom container view controller in Storyboard? I can link child view controllers to a tab view controller, and I can link one view controller to a navigation controller. What must I do to the container VC to accept child VCs? 回答1: As something of a combo of Caleb and Matt's answers, I did: -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([segue.identifier isEqualToString:@"cpdc_check_embed"]) { self.checkVC = segue