7

How to create a multiple step registration form in iOS. Which is the best way ?

Have around 5 steps in total. Two have just agree and disagree button . Everything else has prev and next and finally submit.

1) Creating separate controllers for each step ? Or 2) One controller with scrollview and page control and make it look like multiple steps ?

Second one is the easier one but can't find any tutorials or code to start with, Like to add next previous button in each views inside scrollview with different step actions, validations and many stuffs inside. Thinking of the code that will be real messy.

Have googled a lot but can't find any link for this idea..

Any links and codes are welcome..

Thanks in advance.

4

1 に答える 1

1

まず、UXの観点から、登録手順の数を減らしてみます。モバイルデバイスでは、登録は短く、簡単である必要があります。絶対に必要ではないすべてのステップを切り取り、最小限のデータをキャプチャしてユーザーを開始します。

同意する/同意しない手順については、EULAを変更することでそれらの手順を削除できるかどうかを調べます。または、Appleの標準EULAを使用してすでにカバーされている場合があります。

iOSプログラミングを初めて使用する場合、不要なデータ登録フィールドを取り除いた後でもマルチステッププロセスが必要な場合は、#1をお勧めします。個別のViewControllerを使用すると、ストーリーボードを利用して、各ステップでのデータの検証を容易にし、登録ステップをかなり迅速に追加、削除、および/または並べ替えることができます。

于 2012-06-14T06:31:15.850 に答える