The view controller on the left has 2 containers. The top one embeds the view controller on the right. As you can see, the VC on the right has been automatically sized by Xcode to fit in the top container of the left-hand-side VC. So you would expect that the text box on the right would display just fine when you run the simulator.
However, when I run the simulator, with the text box in its current position, it is 1/2 cut off by the bottom container of the left-hand-side VC. And if the text box were any lower, it would be completely hidden.
Why is the sizing not working out? (The root VC is sized for 4", all others are inferred, and the simulator is running 4".)
EDIT:
I found that if I uncheck "Use Autolayout" on the storyboard file inspector, my stuff displays properly.
What are the drawback of unchecking "Use Autolayout"?
And why does Autolayout cause this bug? Thank you.