Skip to content

Instantly share code, notes, and snippets.

@naithar
Last active October 7, 2015 14:47
Show Gist options
  • Save naithar/2eb4728e21f5be2afbc1 to your computer and use it in GitHub Desktop.
Save naithar/2eb4728e21f5be2afbc1 to your computer and use it in GitHub Desktop.
Hack to fix navigation bar frame after closing video view controller in landscape mode for iOS 8, iOS 9
[[NSNotificationCenter defaultCenter] addObserverForName:@"UIWindowDidRotateNotification" object:nil queue:nil usingBlock:^(id _) {
[self.navigationController setNavigationBarHidden:YES animated:NO];
[self.navigationController setNavigationBarHidden:NO animated:NO];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment