Here is what I wanna do:
My storyboard contains a UIViewController with just a few controlls. It's height is less than half a screen. For simplicity, let's call it the DataViewController.
The DataViewController is embedded inside other UIViewControllers through a "Container View".
Although "Container View" displays the DataViewController, it still needs to have an explicit height set. Otherwise interface builder complains about ambiguous constraints.
Now, how can I tell "Container View" that it's size should be what's required by DataViewController? I.e. without setting a hard coded, explicit height in Interface Builder (which, I fear, would break the layout if the font size changes)?
Or in other words: How do you size/position embedded UIViewControllers in Interface Builder?