To set the scene I have:
- A Tab View Controller with 2 tabs
- Each tab has a Split View Controller
- I’d like to point the Detail view of each Split View Controller to
the SAME view.
I’ve attached a very simple sample project showing the issue.
Run it in the iPad 5.1 Sim, observe each tab. One shows the shared detail view, one fails.
NSLog debugging reports that the second split view has a NULL detail view controller:
2012-04-28 07:21:55.451 svcTest[14597:f803] tabBarController viewControllers = (
"UISplitViewController: 0x6a36100",
"UISplitViewController: 0x6a39ab0"
)
2012-04-28 07:21:55.455 svcTest[14597:f803] svcA.viewControllers = (
"UINavigationController: 0x6a36250",
"UIViewController: 0x6a38720"
)
2012-04-28 07:21:55.457 svcTest[14597:f803] svcB.viewControllers = (
"UINavigationController: 0x6a39cc0"
)
When you click the second tab you get this error:
2012-04-28 07:22:58.457 svcTest[14597:f803] Splitview controller is expected to have a detail children before its used! 2012-04-28 07:22:58.459 svcTest[14597:f803] Split view controller should have its children set before layout!
Looking at the storyboard I have already set the detail views so this really confuses me.

Any help getting this ‘shared’ view to show up on each tab is much appreciated.
Thanks!
I received the same warning when specifying more than two viewControllers for the splitViewController as shown below:
When i removed ‘subViewController’ from the array the warning disappeared.
After reading apple’s documentation on adding / removing subviews it mentions the following:
You can check out the link to UISplitViewController Class Reference for more information.