I have a ViewController as my RootViewController. Then when I click on a button, I replace the rootViewController with a UISplitView.
My Problem is that my application is in Landscape but when I create the UISplitView, it appears in portrait mode and the transition from right is actually from the top.
How do I say pragmatically that my view created has to be in landscape ?
All my viewController are describe as Landscape views in the storyBoard and I wrote down the shouldAutorotate in each.
Here is my code so far :
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPad" bundle:nil];
UISplitViewController *mySplitViewController = [storyboard instantiateViewControllerWithIdentifier:@"CoursSplitView"];
// get the view that's currently showing
UIView *currentView = self.view;
// get the the underlying UIWindow, or the view containing the current view view
UIView *theWindow = [currentView superview];
// remove the current view and replace with myView1
[currentView removeFromSuperview];
[theWindow addSubview:mySplitViewController.view];
// set up an animation for the transition between the views
CATransition *animation = [CATransition animation];
[animation setDuration:0.5];
[animation setType:kCATransitionPush];
[animation setSubtype:kCATransitionFromRight];
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
[[theWindow layer] addAnimation:animation forKey:@"SwitchToView1"];