I need to have different layout for iPhone X family of devices for one view controller. I do not see any straightforward way of doing it in Storyboards so here is what I thought:
1. Different storyboard files for device classes. Problem is I will need to replicate (duplicate) designs for all other view controllers,
2. Leave the view controller empty in the storyboard, even delete the main view. Define interface in Xib files and in loadView method, load the appropriate xib file.
Is there a better way while not leaving Storyboard?