В XIB будет возможность изменить SPlitview Detail / Master в Inspector.Также, если вы добавите его как подпредставление, вы не сможете получить методы делегата splitview, для этого вам нужно будет добавить его в окно.Попробуйте удалить все элементы из окна, используя
[[[[UIAppDelegate window] подпредставления] objectAtIndex: 0] removeFromSuperview];self.appDelegate.splitViewControllerObject = [[UISplitViewController alloc] init];
UINavigationController * rootNav = [[UINavigationController alloc] initWithRootViewController: masterview];UINavigationController * detailNav = [[UINavigationController alloc] initWithRootViewController: detailview];
self.appDelegate.splitViewControllerObject.viewControllers = [NSArray arrayWithObjects:rootNav, detailNav, nil];
self.appDelegate.splitViewControllerObject.delegate = detailviewobj;
[UIAppDelegate.window addSubview:self.appDelegate.splitViewControllerObject.view];
удачи ....