Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 10, 2015 11:42
Show Gist options
  • Save MaximAlien/774c061678a0b26e78c2 to your computer and use it in GitHub Desktop.
Save MaximAlien/774c061678a0b26e78c2 to your computer and use it in GitHub Desktop.
[iOS] Notification about orientation change
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotification object:nil];
}
- (void)orientationChanged:(NSNotification *)notification
{
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment