Skip to content

Commit eb2de83

Browse files
committed
#79 and #90 Allow simultaneous gestures to be detected by the menu
1 parent 2786733 commit eb2de83

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

SlideMenu/Source/SlideNavigationController.m

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,13 @@ - (void)postNotificationWithName:(NSString *)name forMenu:(Menu)menu
658658
[[NSNotificationCenter defaultCenter] postNotificationName:name object:nil userInfo:userInfo];
659659
}
660660

661+
#pragma mark - UIGestureRecognizerDelegate Methods -
662+
663+
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
664+
{
665+
return YES;
666+
}
667+
661668
#pragma mark - UINavigationControllerDelegate Methods -
662669

663670
- (void)navigationController:(UINavigationController *)navigationController

0 commit comments

Comments
 (0)