MMDrawerController having slider on each View Controller

998 Views Asked by At

I am using MMDrawerController for making left slide menu in iOS. The problem is that all the view controllers I am using in this project are having slider with them i.e in each UIViewController I can slide to get left menu but I want only with the first view not with all the UIViewController.

How can I stop slider code for the other UIViewController in the project.

2

There are 2 best solutions below

4
On

you can cancel panning using below method. put that method in viewWillAppear

To allow gesture add this in viewWillAppear

[self.mm_drawerController setOpenDrawerGestureModeMask:MMOpenDrawerGestureModeAll];

when you push any view cancel gesture using below code.

[self.mm_drawerController setOpenDrawerGestureModeMask:MMOpenDrawerGestureModeNone];
0
On

if you don't want side menu for a view controller, call it using segue

example issue code:

assuming you have used this code in the side menu to navigate to other view controllers

switch(item selected) ....
case number:
centerViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"STORYBOARD_ID"];

instead use :

[self performSegueWithIdentifier:@"segue_identifier" sender:nil];

this will navigate to completely new context instead of adding your view controllers to the centerViewController of MMDrawerController