dekatotoro / SlideMenuControllerSwift

iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. It is written in pure swift.
MIT License
3.4k stars 754 forks source link

Is it possible to show the SlideMenuController on a view which is presented but not pushed? #343

Open abhijithExperion opened 7 years ago

abhijithExperion commented 7 years ago

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?

aakarshsasi commented 5 years ago

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