We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8095b8c commit d1281e7Copy full SHA for d1281e7
SlideMenu/Source/SlideNavigationController.m
@@ -299,11 +299,17 @@ - (void)enableTapGestureToCloseMenu:(BOOL)enable
299
{
300
if (enable)
301
302
+ if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
303
+ self.interactivePopGestureRecognizer.enabled = NO;
304
+
305
self.topViewController.view.userInteractionEnabled = NO;
306
[self.view addGestureRecognizer:self.tapRecognizer];
307
}
308
else
309
310
311
+ self.interactivePopGestureRecognizer.enabled = YES;
312
313
self.topViewController.view.userInteractionEnabled = YES;
314
[self.view removeGestureRecognizer:self.tapRecognizer];
315
0 commit comments