I did search something similar with my question, but didn't find anything to help me solve my issue.
Is it possible to set behavior for navigation bar item as tab bar item?
I use TabBarController. Each tab item should show the corresponding ViewController. When user tap on the item in nav bar it should show the corresponding ViewController too with the bottom tab bar. And this ViewController should be as tab bar controller, but not display tab item in the bottom tab bar.
How I can achieve the scenario describe above? Or any alternative idea how it possible to implement, please! Almost always the top and bottom bars should be visible for each ViewController.
tabBarControllers
. First controller will be parent settrue
fortabBar.isHidden
for it, and you should add the similar buttons in everyViewCotroller
which will changetabBar.selectedIndex
so you will have one ViewController for first item and SecondtabBarController
which will be child in firsttabBarController
. Don't hesitate to ask me more – andproff