iOS universal storyboard iPhone iPad

853 Views Asked by At

Lets say, I have an app that shows controller A on iPhone and controller B on iPad, you can think about it like UITableView (for iPhone) and UICollectionView (for iPad) for example. Both of the controllers have the same model and can also have same base class that can share shared stuff.

Now before universal story board I had 2 separate storyboard, one for the iPhone and one for the iPad and in run time I checked and load the correct storyboard according to the device.

The question is what is the right way to do it in universal storyboard?

Option 1 - to use one storyboard that have tableview and collection view and use only one controller for both of them and hide the unnecessary one.

Option 2 - do not use universal in this scenario.

I am trying to understand if I need to use universal storyboard just if the iPhone and the iPad have the same UI?

3

There are 3 best solutions below

1
On

If your whole GUI is different for iPhone and iPad, you should use two different storyboards.

Size class and Universal storyboard are useful when your GUI has same controls and you just want to resize controls according to screen frame.

If this is just a single case where your controls are different for iPhone and iPad, so do one thing:-

Use universal storyboard and create two ViewControllers for iPhone and iPad like:- IphoneViewController and IpadViewController, and on run time check if your device is iPad or iPhone and decide which controller is need to be load/push/present.

3
On

You don't need to have UITableView in your iPhone app, UICollectionView is basically the same thing.

Just make two kinds of UICollectionViewCells, you can make one look like a basic table view cell, and you can use them on the correct device. You probably want a second UICollectionViewFlowLayout as well.

0
On

I think you will use one storyboard for that and create two separate VC class in that and as per your device type push correct storyboard object in that. Just for one view using two storyboard is not good idea it just wasting memory and increase your work