Reputation: 61
Hi guys I have a Main Navigation Controller and a Tab Bar Controller, I have 4 Viewcontrollers and everything works fine. Now I have to open a ViewController from a Button Push Segue, the problem is that the Tabbar disappears once I do that. Is there a simple solution to solve this issue?
Upvotes: 0
Views: 2650
Reputation: 30488
Make your TabBarController
as InitialViewController
and Embed your viewcontrollers with UINavigationController
. This will not hide your Tabbar
from bottom.
Upvotes: 2