Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to support landscape & portrait orientations on my iPAD app that uses a storyboard without getting involved into the intricacies of Auto Layout on iOS6+ and Auto Resizing on iOS 5 and earlier (since the app will support both iOS 5 & 6 so no AutoLayout is allowed here), what I thought of as a beginning point for the solution was the following:

creating two separate storyboards: MainStoryboard-Portrait & MainStoryboard-Landscape, when the current view controller (let's name it FirstViewController) is in portrait, and the user rotates the device to landscape, I instantiate a new FirstViewController from MainStoryboard-Landscape storyboard, and vice versa when the user rotates back to portrait. I did something like this in willRotateToInterfaceOrientation method in FirstViewController.m :

  UIStoryboard *storyboard  = [UIStoryboard storyboardWithName:@"MainStoryboard-Landscape" bundle:[NSBundle mainBundle]];
  FirstViewController *VC =  [storyboard instantiateViewControllerWithIdentifier:@"VC1"];
  self.view = VC.view;

but the following crash happens on iOS6+: A view can only be associated with at most one view controller at a time!, tried it also on iOS5 there will be no crash but the rotation does not work properly: window bounds rotates but the view itself keeps as is.

How to get this working on both iOS 5 & 6 ? or if there is another better method please provide me with a working code sample for it and i will award you a bounty of 50 points.

share|improve this question

3 Answers

if you really don't wish to use auto layout, doing this in a single .storyboard can still be done by having an IBOutlet (weak, nonatomic) UIView* portraitView and an IBOutlet (weak, nonatomic) UIView* landscapeView. create each view as a subview of the main view for FirstViewController in .storyboard.

then in willRotateToInterfaceOrientation:, perform the following:

    if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation))
    {
        self.portraitView.hidden = NO;
        self.landscapeView.hidden = YES;
    }
    else
    {
        self.portraitView.hidden = YES;
        self.landscapeView.hidden = NO;
    }

when working on your views in .storyboard, you can see each subview a little better by checking/unchecking the hidden flag in the right sidebar.

then, another advantage of this is that if you have some views that look ok regardless of orientation, you don't have to maintain a separate storyboard file and scene for them.

share|improve this answer
it still a design headache for complex UI views + i think there will be a bigger memory footprint loading two views at the same time for each scene. – JAHelia Jan 2 at 5:57

Auto layout really is the way to go. As soon as you've got two storyboards you've got a maintenance and consistency headache — if you want the portrait and landscape user experience to be the same. If you specifically want them to be different for a reason, then two storyboards is appropriate.

share|improve this answer
auto layout is very complicated when you start working with a complex UI project – JAHelia Dec 30 '12 at 12:01
It can be, but the XCode UI designer hides a lot of that complexity. – Andrew Dec 30 '12 at 12:03
3  
This isn't a good answer, as he said he wants to be able to support pre iOS 6. By supporting only iOS 6, you effectively kill a large portion of the user base. iOS 6 adoption is good, but it isn't THAT good. – jmstone Jan 2 at 22:13

As of April 13,2013 iOS6 adoption rate is estimated at 92% (android at 25%) according to http://thetechblock.com/ios-6-adoption-rate-92/ - how things change in a few months.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.