I’m developing my first app using the latest version of Xcode and the iOS SDK. I’m seeing a number of options, and quick Googling has failed me so far. I have one main screen set up for my app so far (it features a search text field which displays content in another text field), and I’d like to now make a second screen. I can do this in a number of ways, like have a switch where the text field changes to a picker control and such an action changes the behaviour, OR I can just switch to another view entirely. I figure learning the second method will be more beneficial to me in the future, so I’m wondering what I should make to do that. A View? Another storyboard?
Share
Add a view ; a view is equivalent to a page.
Storyboard is a collection of views/pages ; it helps keep views together, & then you can also organize your flows between views/pages ‘within’ the storyboard easily. Storyboard is like a Java/C++ package, whereas View is like a Class.