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?
As something of a combo of Caleb and Matt’s answers, I did:
…where
checkVCis a property on the container controller:You just have to set your
embedsegue’sStoryboard IDto whatever you want (in this case,cpdc_check_embed):…and then check the identifier in
-prepareForSegue:sender:.Still not an outlet, but cleaner than Matt’s (IMHO) and more specific than Caleb’s, and you still get a nice-looking storyboard: