SlideMenuControllerSwift
SlideMenuControllerSwift copied to clipboard
Is it possible to show the SlideMenuController on a view which is presented but not pushed?
I am having a view controller which is having a button inside it. On clicking the button another view controller B is presented on to it. Now if i swipe in this view controller Bi can't get the Side Menu. Is it a bug of this library or any other alternative method to achieve this?
I'm having the same isssue. A workaround was: let vc = self.storyboard?.instantiateViewController(withIdentifier: "yourViewController") as! ViewController self.slideMenuController()?.changeMainViewController(vc, close: true) But i'm having an issue when a tab bar is present as it won't go when I switch to another screen