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.
