I have 4 main ViewController
s that are connected to a UITabBarController
. These are the 4 main screens of my application. Each of these 4 screens has an icon on the TabBar
.
Now, from within one of these main screens, I want to be able to click a button to show a new "child" view controller. When I segue from the MainVC
to the ChildVC,
the UITabBar
does not show on the ChildVC
. How can I get the UITabBar
to remain shown? I do not want to add the ChildVC
to the UITabBar
, as it should not have an icon on the bar.
I am open to using any type of segue or combination of views.
Within MainVC
, I want to click a button to show ChildVC
WITHOUT losing the UITTabBar
from the MainVC
(and without adding ChildVC
as an icon to UITabBar
).