I have an iPhone app containing overview (table view) and multiple detail views (different kinds of views). For the purpose of modularity, all detail views use separate storyboards.
Now I need to make my app universal. For that, I want to use an UISplitView
with the overview as master view and load the details views on the right. However, I am not sure that it is possible to do it with my multiple storyboards.
What are my possibilities? I have to keep the app modular. I have already separate storyboards for iPhone and iPad but that doesn't really help me yet.
I would be grateful for any suggestions.