Simon Hessner
Simon Hessner

Reputation: 1837

Xcode iOS app with multiple GUIs

I am developing an app where I am not sure which interface suits my users best. So I want to provide them multiple GUIs which they can choose in the settings.

What would be the best way to implement multiple interfaces? Can I just add another storyboard and then switch between them somehow?

Upvotes: 2

Views: 76

Answers (1)

John D
John D

Reputation: 1545

You can definitely do what you're thinking of doing. You can either do multiple storyboards or just have different viewController in your one storyboard and instantiate them in times when you need them.

Upvotes: 1

Related Questions