AKSideMenu icon indicating copy to clipboard operation
AKSideMenu copied to clipboard

How to open side menu from other view controller

Open chetanpanchal94 opened this issue 5 years ago • 2 comments

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?

chetanpanchal94 avatar Sep 03 '19 11:09 chetanpanchal94

Have you fixed it?

Mudasir441 avatar Jun 14 '23 05:06 Mudasir441

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()

himanshuvZB avatar Jul 21 '23 13:07 himanshuvZB