When I use landscape, I can see my master and detail right next to each other. Is it possible to have the profile orientation work exactly the same? My detail view is very small and doesn't need to take up the whole window, also it doesn't even make sense to show the detail view if no item is selected in the master.
I'm talking iPad specifically here.
Just implement the UISplitViewControllerDelegate method below:
- (BOOL)splitViewController:(UISplitViewController *)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation {
return NO;
}