I'm learning how to use storyboards for iOS development and I can't seem to figure out how to manage multiple views on the same screen.
I want to be able to control multiple elements on the same screen, for example a UITableView
with an UIImageView
next to it.
This means I need 3 UIViewControllers
, 1 for the UITableView
, 1 for the UIImageView
, and one for the main view. But as far as I can tell storyboards only allow for 1 controller per view hierarchy screen. Can anyone tell me what I'm missing?