container-view
How to use a ‘Container View’ in iOS?
Well let’s break this into some simple steps: Drag a container view to the main view of one of your controllers. When you drag the container view, IB will create an embed segue for you and you can resize the container’s view by dragging the resize control points as usual. Any changes in the size … Read more
xcode storyboard Container View – How do I access the viewcontroller
There is another solution by specifying an identifier for the embed segue(s) and retrieve the corresponding view controllers in method prepareForSegue: The advantage of this way is that you needn’t rely on a specific order in which your child view controllers are added due to the fact that each child view controller is embedded via … Read more