You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, could you please tell if there is such an attribute to block any touches on main screen, when menu is opened, until it would be closed? Or when menu is opened and there is a touch on second Controller, the menu would close.
The text was updated successfully, but these errors were encountered:
I found out, that when i change top controller by [self performSegueWithIdentifier:segueIdentifier sender:self];
the gesture recognizing is working (that i don't want to) when menu is opened.
[[SlideNavigationController sharedInstance] performSegueWithIdentifier:segueIdentifier sender:self]; crashed with - 'Receiver (<SlideNavigationController: 0x15b69e00>) has no segue with identifier 'EventStorySegue''
Thanks for the tip, I changed that line to: if ( [self isMenuOpen]) { [self enableTapGestureToCloseMenu:YES]; } else{ [self enableTapGestureToCloseMenu:NO]; }
and now it's working.
Hello, could you please tell if there is such an attribute to block any touches on main screen, when menu is opened, until it would be closed? Or when menu is opened and there is a touch on second Controller, the menu would close.
The text was updated successfully, but these errors were encountered: