I have added a custom tab bar. With tabs including more tab.

My First tab supports only portrait mode. Second tab has all orientations.

Issue happens when selecting the second tab and keep it in landscape mode and then select first tab in landscape mode. At that time, first tab view is cleanly rotated but tab bar remains in landscape mode.

How can i overcome this scenario? This is the should rotate method in custom tab bar controller

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if (self.selectedIndex == 0) {

    return [self.selectedViewController shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationPortrait];

} else if (self.selectedIndex == 1) {

    return YES;
} 

return NO;}

This is the should rotate method in first and second view controllers of navigation controller

First

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait);}

Second

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;}
link|improve this question

The tab bar that remains in landscape is the custom one? How did you added to the screen? – Alex Terente May 2 '11 at 10:48
@Terente Ionut Alexandru navigationController_ = [[UINavigationController alloc]initWithRootViewController:tabBarController_]; [self.window addSubview:navigationController_.view]; – xydev May 3 '11 at 8:48
feedback

1 Answer

up vote 2 down vote accepted

In should autorotate to interface orientation you need to redraw the tabBar, just remove it from the self.window and add it again.

[navigationController_.view removeFromSuperview];
[self.window addSubview:navigationController_.view];

Edit: you need to set the correct frame for every orientation before redraw.

link|improve this answer
no words... it worked fine... :) +1 – xydev May 3 '11 at 11:15
once again thanks.. – xydev May 3 '11 at 11:22
feedback

Your Answer

 
or
required, but never shown

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