forked from organicmaps/organicmaps
Merge pull request #320 from igrechuhin/ig-ios7
[ios] Fixed menu state restore on ios 7.
This commit is contained in:
commit
1bb3bda662
1 changed files with 9 additions and 0 deletions
|
@ -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.];
|
||||
|
|
Loading…
Add table
Reference in a new issue