I use an IF statement to detect when the orientation of a device changes, and when it does, a new view is displayed, one portrait, the other landscape. The only problem is, if I rotate from portrait to landscape, and the landscape view shows, it has not rotated all of the way. It is still in portrait, 90 degrees off of what it should be. Thanks for your help!
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
if (toInterfaceOrientation == UIInterfaceOrientationPortrait || toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) {
//portrait
self.view = portrait;
} else {
//landscape
self.view = landscape;
}
}