So I've used the following code to load up a UIView when the device orientaiton changes, but when the page loads, the content on the page is not layed out the correct way. Any thoughts on how to change this?
Rotated without checking left and right in the project settings.
Rotated with checking left and right in the project settings.
- I'm actually leaning toward this because at least the status bar is in the right area, but the downfall is that the width of the page isn't changing and allowing me to build horizontally...
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange) name:UIDeviceOrientationDidChangeNotification object:nil];
- (void)deviceOrientationDidChange{
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
if (orientation == UIDeviceOrientationPortrait){
NSLog(@"I'm portrait!");
}
else if (orientation == UIDeviceOrientationLandscapeLeft) {
NSLog(@"I'm landscape LEFT!!");
}
else if (orientation == UIDeviceOrientationLandscapeRight) {
NSLog(@"I'm landscape Right!!");
}
else {
}
}
Have you selected all the orientation in the General settings ?