I have a universal app. In the plist it is set for supported interface orientations to all 4, and supported interface orientations for ipad to all four. On all controllers, I have:
The layout is this:
Tab Bar Controller, tabs 1 and 4 are Navigation controllers that load table views...tabs 2 and 3 are simply view controllers without xibs. It is a universal app. On the iPhone, it rotates fine, but on the iPad it will not rotate any. Any thoughts as to the problem?
Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
Tab Bar Controller, tabs 1 and 4 are Navigation controllers that load table views...tabs 2 and 3 are simply view controllers without xibs. It is a universal app. On the iPhone, it rotates fine, but on the iPad it will not rotate any. Any thoughts as to the problem?