MFSideMenu
MFSideMenu copied to clipboard
Navigation controller pop to back view pan gesture enable ?
We can disable pan mode of the center navigation controller. But I need to know, how to disable pan mode of center navigation top view controllers and enable iOS default pop to back view controller gesture?
There is a setPanMode: method in MFSideMenuContainerViewController, which controls if the pan gesture should be enabled or not.
You could add [sideMenu setPanMode: MFSideMenuPanModeNone]; in viewDidAppear: and [sideMenu setPanMode: MFSideMenuPanModeDefault]; in viewWillDisappear: for every UIViewController other than the first.