I have a Main.storyboard
containing the root view controller of my app. However, I would like to display an onboarding view (without a navigation controller) on first app launch in order for the user to fill some data that's needed only once. So I was thinking about creating an Onboarding.storyboard
, but I don't know how to choose which storyboard to set, where to do it (AppDelegate
?) and when data is filled, how to change the current storyboard.
Thanks for your help.