Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"];
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.