Using interface builder in xcode and just one .xib file, how can I create alternate layouts when rotating between landscape and portrait orientations?
See diagram of differing layouts
N.b. the green view/area would contain 3 items flowing horizontal in landscape and in portrait those 3 items would flow vertically within the green view/area.
A way to do this is to have three views in your .xib file. The first one is the normal view of your Viewcontroller with no subviews.
Then you create the views for portrait and landscape as you need them. All three have to be root-level views (have a look at the screenshot)
In your Viewcontroller, create 2 IBOutlets, one for the portrait and one for the landscape view and connect them with the corresponding views in the interface builder:
IBOutlet UIView *_portraitView; IBOutlet UIView *_landscapeView; UIView *_currentView;
The third view, _currentView
is needed to keep track of which one of these views is currently being displayed. Then create a new function like this:
-(void)setUpViewForOrientation:(UIInterfaceOrientation)orientation { [_currentView removeFromSuperview]; if(UIInterfaceOrientationIsLandscape(orientation)) { [self.view addSubview:_landscapeView]; _currentView = _landscapeView; } else { [self.view addSubview:_portraitView]; _currentView = _portraitView; } }
You will need to call this function from two different places, first for initialization:
-(void)viewDidLoad { [super viewDidLoad]; UIInterfaceOrientation interfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation]; [self setUpViewForOrientation:interfaceOrientation]; }
And second for orientation changes:
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration { [self setUpViewForOrientation:toInterfaceOrientation]; }
Hope that helps you!
There is no automatic way to support that since it is against Apple design. You should have one ViewController supporting both orientations.
But if you really want to do so you need to reload xib's on rotation events and load different nib files.
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration { [[NSBundle mainBundle] loadNibNamed:[self nibNameForInterfaceOrientation:toInterfaceOrientation] owner:self options:nil]; [self viewDidLoad]; } - (NSString*) nibNameForInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { NSString *postfix = (UIInterfaceOrientationIsLandscape(interfaceOrientation)) ? @"portrait" : @"landscape"; return [NSString stringWithFormat:@"%@-%@", NSStringFromClass([self class]), postfix]; }
And you create two nib files post-fixed with "landscape" and "portrait".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With