i have this code below, that recognize when the device change his orientation, and if the orientation are landscape left or right, he back again to portrait:
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter]
addObserver:self selector:@selector(orientationChanged:)
name:UIDeviceOrientationDidChangeNotification
object:[UIDevice currentDevice]];
- (void) orientationChanged:(NSNotification *)note{
UIDevice * device = note.object;
if(device.orientation == UIDeviceOrientationLandscapeRight){
[[UIDevice currentDevice] setValue:
[NSNumber numberWithInteger: UIInterfaceOrientationPortrait]
forKey:@"orientation"];
}
if(device.orientation == UIDeviceOrientationLandscapeLeft){
[[UIDevice currentDevice] setValue:
[NSNumber numberWithInteger: UIInterfaceOrientationPortrait]
forKey:@"orientation"];
}
}
When I run my project and change the orientation of my device to landscape right or left, this code recognize and change the orientation to portrait, but if I rotate my device again to landscape left or right, the code don't work and my device stay in landscape mode, why? and how to solve this problem?
I dont know if I am correct but try to fire your notification from viewWillAppear