I am trying to develop a splitView based iPad app, that displays the split interface in every orientation. I have tried subclassing the UISplitViewController class as given
you just need to add this delegate method to your detail view manager
- (BOOL)splitViewController:(UISplitViewController *)svc
shouldHideViewController:(UIViewController *)vc
inOrientation:(UIInterfaceOrientation)orientation
{
// Hide split view in portrait mode
//return UIInterfaceOrientationIsPortrait(orientation);
// Show Split view in portrait mode
return NO;
}
//vKj