How would one implement a wizard style interface for the iPhone?
For instance I have a form that I would like to break down into 5 different pages or views instead of putting all the information to fill out into one page or view.
This interface must have the ability to go prev or next in case they want to change something on page 2 when they are on page 4.
This interface must have the ability to go to page 3 directly and still be
able to go prev and next. Seems like using UINavigationController
wouldn't
work here since views 1 and 2 are not on the stack so prev would not work.
Update: Check out the "gas cubby" application. It has what I'm looking for. UITableView
presents the items you can fill out. Selecting a row takes you to the detail view to enter data and prev and next to fill in other information.