John-Lluch / SWRevealViewController

A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps, done right !
Other
4.52k stars 987 forks source link

How to have TabBarController at the bottom itself on selecting menu Item from the side menu? #735

Open jaisan123 opened 7 years ago

jaisan123 commented 7 years ago

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 image1

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)

}

iDevelopper commented 7 years ago

See #633