I plan to develop an check list app that consists of multiple pages. Each page is going to display a list of simple Yes/No questions and a "Next" button at the bottom of the page.
In terms of the app design I see two options
One
UIViewController
with a stack of full page UIViews (layered, z-index). Switching from page 1 to 2 I'll usesendSubviewToBack
One
UIViewController
per page. Switching from page 1 to 2 I'll present the new ViewController.
Questions: What are are the PROS and CONS of these two approaches. Any other option that I've overseen? What are your experiences, suggestions?