AKSideMenu
AKSideMenu copied to clipboard
How to open side menu from other view controller
I have rootVC as AKSideMenu, content view is tabbar and a left and a right menu. when I navigate to another view controller from tabbar, it is not opening menu and my navigated view controller freezes.
Can you please help, how to open a menu after navigation?
Have you fixed it?
I have rootVC as AKSideMenu, content view is tabbar and a left and a right menu. when I navigate to another view controller from tabbar, it is not opening menu and my navigated view controller freezes.
Can you please help, how to open a menu after navigation?
You can do like below on side menu tableview event :
let vc = self.storyboard?.instantiateViewController(withIdentifier: "ABC") ? ABC self.sideMenuViewController!.setContentViewController(vc, animated: true) self.sideMenuViewController!.hideMenuViewController()