Hi,im using SWRevealController to have a side menu. In my app ,it also have UITabBarcontroller.
My connection format is as SWRevealViewController--->UItabbarController--->NavigationController--->UITabbaritemPage-->Another vc
PLEASE CLICK ON THE IMAGE TO SEE IN CORRECT ORIENTATION
The above show is the layout im using.I want to have that burger button (menu button) in almost all vc that are showing from and in tabbarcontroller. Currently im getting the side menu when tapping on the Button (The image showed in right side as speareate).On choosing a menu ,it shows the desired vc but,the bottom tab bar is not there. i want to have the bottom tabbar in entire pages ..also in pages from the side menu..
How can i acheive this.Please help me.
The code im using in didSelectRowAtIndexPath is
if indexPath.row == 1{
let destinationVc = self.storyboard?.instantiateViewController(withIdentifier: "Home")
let newFrontVc = UINavigationController.init(rootViewController:destinationVc!)
revealViewController.pushFrontViewController(newFrontVc, animated: true)
Hi,im using SWRevealController to have a side menu. In my app ,it also have UITabBarcontroller. My connection format is as SWRevealViewController--->UItabbarController--->NavigationController--->UITabbaritemPage-->Another vc
PLEASE CLICK ON THE IMAGE TO SEE IN CORRECT ORIENTATION
The above show is the layout im using.I want to have that burger button (menu button) in almost all vc that are showing from and in tabbarcontroller. Currently im getting the side menu when tapping on the Button (The image showed in right side as speareate).On choosing a menu ,it shows the desired vc but,the bottom tab bar is not there. i want to have the bottom tabbar in entire pages ..also in pages from the side menu.. How can i acheive this.Please help me.
The code im using in didSelectRowAtIndexPath is if indexPath.row == 1{ let destinationVc = self.storyboard?.instantiateViewController(withIdentifier: "Home") let newFrontVc = UINavigationController.init(rootViewController:destinationVc!) revealViewController.pushFrontViewController(newFrontVc, animated: true)
}