when i load tabbar and navigation bar then tabbar and navigation bar is not oriented with this
views:
30answers:
1
A:
make sure that in every single ViewController in your project there is a method like this:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
fluchtpunkt
2010-10-06 07:42:14
i make it sure that this method is like this but when i change the orientation then tabbar and navigation bar is not rotate
GhostRider
2010-10-06 07:54:58
if this method is in ALL your UIViewController-subclasses your views should rotate. When you say tab and navBar do not rotate, does the rest of the view rotate? Or no rotation at all?
fluchtpunkt
2010-10-06 08:10:55