What is the best practice when making a storyboard for iPhone and iPad?

1k views Asked by At

I'm making an app that would run on iPad and iPhone but only in landscape mode. The first app that I made was only for iPhone using one storyboard and hAny wAny size classes.

  1. What are the good practices when designing an app for iPhone and iPad, regarding usage of storyboards and size classes?

  2. Should I make 2 storyboards for each one of them? If so, what would the size classes be?

3

There are 3 answers

1
Usharao On
  1. You Should use 2 Storyboards. One for iPhone and another for iPod.
0
Keyur Akbari On

No need to create two storyboard, you can design an app using auto layout.

http://www.raywenderlich.com/83129/beginning-auto-layout-tutorial-swift-part-1

0
iFx On
  1. Use Size classes. Start from wAny and hAny. Make appropriate changes for each device switching to different sizes. Using container views will make it more handy.
  2. Single storyboard should be sufficient for both iPhone and iPad. A storyboard specific to a separate module / User story is preferred.