I'm running into a serious problem while connecting a Matt Legend Gemell's MGSplitViewController. to a UITabBarController. To get that working I decided to derive a UIViewController class named MGSplitView to configure that one to the first tab of the UITabBarController. My class MGSplitView uses loadView to create and initialize the MGSplitViewController and its associated view controllers. At the same time I replace the first tab of the UITabBarController with the initialized MGSplitViewController.
So far it works with a but: When I display the responder chain in viewDidAppear: I realize that the MGSplitViewController is missing and my old intermediate class MGSplitView is at that place. As a consequence viewWillAppear:/viewDidAppear: get called in the MGSplitViewController and viewWillDisappear:/viewDidDisappear: don't get called and all other stuff like willRotateToInterfaceOrientation:duration:, willAnimateRotationToInterfaceOrientation:duration:, didRotateFromInterfaceOrientation: and whatever else are also not called. This is a really bad situation as the split view does not make a proper layout after rotation.
This is my loadView:
- (void)loadView
{
if (![self isViewLoaded])
{
self.splitViewController = [[MGSplitViewController alloc] init];
self.rootViewController = [[RootViewController alloc] init];
self.detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailView" bundle:nil];
self.masterNaviController = [[UINavigationController alloc] initWithRootViewController:self.rootViewController];
masterNaviController.title = nil;
rootViewController.title = @"The Root View";
NSArray* viewControllers = [NSArray arrayWithObjects:self.masterNaviController, self.detailViewController, nil];
[splitViewController setDelegate:detailViewController];
[splitViewController setShowsMasterInPortrait:YES];
[splitViewController setViewControllers:viewControllers];
rootViewController.detailViewController = detailViewController;
detailViewController.splitController = splitViewController;
self.view = self.splitViewController.view;
NSMutableArray* tabViewControllers = [self.tabBarController.viewControllers mutableCopy];
[tabViewControllers replaceObjectAtIndex:0 withObject:self.splitViewController];
[self.tabBarController setViewControllers:tabViewControllers];
[self resignFirstResponder];
[splitViewController.tabBarController setSelectedIndex:0]; // reassign to set the new view controller as the active one
[rootViewController performSelector:@selector(selectFirstRow) withObject:nil afterDelay:0];
[detailViewController performSelector:@selector(configureView) withObject:nil afterDelay:0];
}
}
and this is from MGSplitViewController:
- (void)viewWillAppear:(BOOL)animated
{
// call added
[self becomeFirstResponder];
[super viewWillAppear:animated];
if ([self isShowingMaster]) {
[self.masterViewController viewWillAppear:animated];
}
[self.detailViewController viewWillAppear:animated];
_reconfigurePopup = YES;
[self layoutSubviews];
// test added
UIResponder* responder = self.detailViewController.view;
while (responder = [responder nextResponder])
{
NSLog(@"%@", responder);
}
}
The responder chain looks like that:
TestMGSplitView[47005:207] <DetailViewController: 0x6844db0>
TestMGSplitView[47005:207] <UIView: 0x6846b00; frame = (0 0; 768 955); autoresize = RM+BM; layer = <CALayer: 0x6843520>>
TestMGSplitView[47005:207] <MGSplitView: 0x6843560>
TestMGSplitView[47005:207] <UIViewControllerWrapperView: 0x684ac50; frame = (0 20; 768 955); autoresize = RM+BM; layer = <CALayer: 0x684a0b0>>
At MGSplitView's place I should have the MGSplitViewController's one / or insert it between MGSplitView and UIView... Any ideas how to bring the split view controller into the responder chain?