What is the best way to create a wizard using a storyboard?
For instance, after a user launches my app for the first time he/she should create a profile (name, nickname, gender, interests, etc). I want to do this in several steps (wizard). So in step 1,2,3 an user is able to fill in personal info. At step 4 there will be a 'finish' button. The moment that the person object is saved in core data should be when the user taps this button. But what is the best approach to do this? I created a Person class, which inherits from NSManagedObject
In the storyboard I created one navigation controller which is connected to a viewcontroller (step 1), this controller is connected with another viewcontroller (step2), and so on... Is it a good idea to create different view controller classes where everything is handled or should I use one which I should re-use?
Any tips how to do create a wizard in general? (in combination with core data)