I'm developing an iOS application, which is actually a wrapper for an existing web application. It adds some additional functionality which can only be achieved this way.
I finished designing the application using size classes and layout constraints. I used one storyboard for both iPhone and iPad. The problem is, I want the iPhone application to be able to only use portrait mode, while the iPad may only use landscape mode (there are different web applications optimized for iPhone and iPad).
Is it possible to do this using only one storyboard, or do I need to use two storyboards (one for iPhone, set to only portrait; and one for iPad, set to only landscape); hence duplicating my design?