ios - Best Storyboard-Practice for App w/ Initial Setup Screen -


in creating app, want achieve:

first visit (if !setup): 1) setupview [uinavigationcontroller] 2) overviewview [uinavigationcontroller]  second visit (if setup): 1) overviewview [uinavigationcontroller] 

i'm looking use storyboards, best practice use here? should i

a) create separate storyboards (one setup, 1 regular use) , change between two

b) have single storyboard, 2 separate uinavigationcontrollers, having setupview initial , programmatically check setup? yes/no forward overviewview? if so, transaction? tried doing this, app crashes if push segue new nav controller.

looking forward hearing guys!

go option b, need make sure in app delegate perform check on controller show. can set in settings.plist bool variable show if setup has done or not. fetch result settings plist , use call 1 or view controller. ( if bool hassetup true ( have setted ) won't create instance of setup controller ).


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -