I use swift3 and MMDrawerController for creating slide menu.
the MMDrawerController codes are these, which are on appdelegate :
let mainStoryBoard : UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let homeViewController = mainStoryBoard.instantiateViewController(withIdentifier: "HomeViewController") as! HomeViewController
let cartViewController = mainStoryBoard.instantiateViewController(withIdentifier: "CartViewController") as! CartViewController
let menuViewController = mainStoryBoard.instantiateViewController(withIdentifier: "MenuVCGuest") as! MenuVCGuest
let leftSideNav = UINavigationController(rootViewController: cartViewController)
let centerNav = UINavigationController(rootViewController: homeViewController)
let rightSideNav = UINavigationController(rootViewController: menuViewController)
centerContainer = MMDrawerController(center: centerNav, leftDrawerViewController: leftSideNav, rightDrawerViewController: rightSideNav)
Everything works fine and I can navigate to some other ViewControllers from slide menu... but if I navigate to a ViewController from another UINavigationController and come back to Main page of App (Root_View), The slide menu buttons from navigationbar does not work anymore...
I created multiple UINavigationController to open new pages in full Screen view not as sub view of a navigation process...
So with separating the UINavigationControllers, the slide menu buttons on main page navigation bar stops working!
what should I do now?
Sorry for my poor english...