I have tabbed application and 3 tabs contain exactly the same screens just with different data .
To implement functionality of those screens i used split view controller. What i need to do is create 3 tabs that all use this split view controller(with the same master and detail view controllers) without duplicating master and detail view controllers three times in storyboard.
I tried creating three split view controllers and linking all of them to one master view controller and one detail view controller but that didn't work. Only one of those controllers actually used them. Other just showed black screen.
Any tips on how can this be done?