Hi all,
I'm stuck since few days with a weird issue. I've been looking for a solution on Google, and I don't see anyone having the same bug.
My application doesn't want to rotate. I'm using several viewController, implemented the shouldAutoRotateToOrientation method but the view controllers don't want to rotate.
I've done the debug, but the the method
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
return toInterfaceOrientation == UIInterfaceOrientationPortrait;
}
is called only once, when the view load, with the UiDeviceOrientationPortrait. When I change my iphone orientation, it doesn't call this method in any Controller.
In the info.plist i put in the "Supported Interface Orientation" every orientation, but it didn't change anything.
I'm using the Three20 classes, for some viewControllers but not the TTNavigator.I'm also using the ZXIng widget. My app is a tabBarApplication. I know a tabBar can rotate only if all the viewContrllers of the tabBar can also rotate. But the views i Want to be able to rotate are in modals view, or MPMoviePlayer. Even the videos stay stucked in Portrait.
Thank you for your help.
Ed