Create multi-step registration in iOS

How to create a registration form for several steps in iOS. What is the best way?

Only about 5 steps. Two just agreed and disagree with the button. Everything else has the previous, next and, finally, obeys.

1) Create separate controllers for each step? Or 2) One controller with scroll and page control and make it look like a few steps?

The second one is simpler, but cannot find any tutorials or code to start with. How to add the next previous button in each view inside a scrollview with various step actions, validations and a lot of things inside. Thinking of code that will be really messy.

You have a lot of googled but can't find a link to this idea.

Any links and codes are welcome.

Thanks in advance.

+7
source share
1 answer

First of all, from the point of view of UX, I would try to reduce the number of registration steps. On mobile devices, registration should be short and painless. Cut out all the steps that are not absolutely necessary and capture the minimum data to run the user.

For your agreement / disagreement steps, I would like to examine if changing the EULA can help you remove these steps. Or you can already be reached using Apple's standard EULA standard.

If you're new to iOS programming, # 1 is my recommendation IF you still need a multi-step process after deleting unnecessary data logging fields. With separate view controllers, you can use storyboards, simplify data validation at every step, and allow you to quickly, easily add, delete, and / or change the registration order.

+1
source

All Articles