Xcode: "This template provides a starting point for a single view application. It provides a view manager to manage the view and a nib file containing the view."
What does it mean? (i.e. what does Single view mean)
1) This means that your application will have only one viewing screen that is active
2) This means that your application will be able to have as many screens as you like using one view controller.
Well, what if your application has multiple screens? more than one view screen, still suitable for presentation-based application template?
Example
Screen1 (main): there are 3 buttons on this screen: "Open Form1", "Open Form2", "Open Form3"
When you click the button, the corresponding screen
Click the "Open Form1" button, the "Form1" 2 screen will open
Click the "Open Form 2" button, the "Form2" screen 3 will open
Click the "Open Form 3" button, the "Form3" 4 screen will open
When a user fills out a form and submits it, a thank you screen is displayed, so in this example there will be a total of 5 screens.
Each screen of the form contains different, text field inputs and information, is it considered as a presentation-based application?