ENSwiftSideMenu icon indicating copy to clipboard operation
ENSwiftSideMenu copied to clipboard

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: unrecognized selector sent to instance

Open zcelaloglu opened this issue 8 years ago • 1 comments

After I converted my code base to swift 3 my app is crashing due to the unrecognized selector

when I click menu icon it throws an exception

@IBAction func openMunu(sender: AnyObject) { toggleSideMenuView() }

How can I overcome this issue?

zcelaloglu avatar Oct 02 '16 10:10 zcelaloglu

solved this by putting on viewWillAppear of the navigationcontroller subclassing ENSideMenuNavigationController self.sideMenu?.allowLeftSwipe = false self.sideMenu?.allowRightSwipe = false self.sideMenu?.allowPanGesture = false

vincekinyops avatar Feb 06 '18 08:02 vincekinyops