Using Multiple Storyboards in iOS

These are the best articles I’ve seen on multiple storyboards.

Not only does this guy tell you how to create a new storyboard in code, he

  • recommends multiple storyboards in practice (more modular code)
  • discusses when to use xibs vs storyboards (xibs hold views, storboards are based on controllers)
  • provides a class for linking storyboards with segues on github

Note that this last point is important because the key downside of multiple storyboards is that you can’t usually link them with segues, but robs library allows that with a bit of fudging

Also see the discussed here

Leave a Comment