I have been searching high and low for an answer to this but none are for storyboards.
I have used this tutorial for creating my splitview and it works however the following part:
UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
UINavigationController *navigationController = [splitViewController.viewControllers lastObject];
splitViewController.delegate = (id)navigationController.topViewController;
Won't work of course because the splitview is in a tabview.
How do I set my DetailViewController as the delegate?