Merge pull request #320 from igrechuhin/ig-ios7

[ios] Fixed menu state restore on ios 7.
This commit is contained in:
Vlad Mihaylenko 2015-10-21 10:51:10 +03:00
commit 1bb3bda662

View file

@ -525,6 +525,15 @@ typedef NS_ENUM(NSUInteger, UserTouchesAction)
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotification object:nil];
}
- (void)presentViewController:(UIViewController *)viewControllerToPresent
animated:(BOOL)flag
completion:(void (^__nullable)(void))completion
{
if (isIOSVersionLessThan(8))
self.menuRestoreState = self.controlsManager.menuState;
[super presentViewController:viewControllerToPresent animated:flag completion:completion];
}
- (void)orientationChanged:(NSNotification *)notification
{
[self willRotateToInterfaceOrientation:self.interfaceOrientation duration:0.];