uiview - Wizard style of interface in iPhone -
How would a wizard style interface be applied to an iPhone?
For example, I have a form that I would like to break into 5 different pages or views to view in one page or fill in a view.
The interface should have the ability to move first or foremost, when they want to change something on page 2, when they are on page 4.
The ability to go into this interface should be able to go straight to page 3 and still go back and forth. It seems that the use of UINavigationController
will not work here because the views 1 and 2 are not on the stack, so the last thing will not work.
Update: View the "Gas Density" application. What I'm looking for is UITableView
presents items that you can fill. Selecting a row takes you to the detailed viewer to enter the data and fill in other information and the last and Next is
UINavigationController seems like a clear solution that gives you a good, familiar page transition, and if you have any If you need to go to a specific page, you can set up your navigation stack without using transition animation.
Comments
Post a Comment