1

I am using MMDrawerController and I wish to set multiple closing gestures, anyone know if this is possible? If so how do I accomplish this?

Currently I am doing this:

 [destinationViewController setCloseDrawerGestureModeMask:MMCloseDrawerGestureModePanningCenterView];
Slee
  • 27,498
  • 52
  • 145
  • 243
  • On their GitHub page it says: "You are free to set whatever combination you want for opening and closing." But I haven't figured out how, yet. https://github.com/mutualmobile/MMDrawerController – fancy Oct 16 '15 at 13:58
  • exact same issue I am having – Slee Oct 17 '15 at 11:34

1 Answers1

1

Don't know if you still need help with this, but to set multiple closing gestures:

 [destinationViewController setCloseDrawerGestureModeMask:MMCloseDrawerGestureModePanningCenterView | MMCloseDrawerGestureModeTapCenterView];

Add however many you wish

figtree
  • 26
  • 2