casillas
casillas

Reputation: 16813

TabBar Controller on DetailViewController

I have 5 pages and linked eachother with TabBarController. My last viewcontroller is called More and it is table viewcontroller. In this tableviewcontroller, many other viewcontrollers are linked to this tableviewcontroller such as like us, contact us, rate us etc.. I want to see main tabbar on these viewcontrollers also. How is it possible? I use storyboard.

Upvotes: 0

Views: 101

Answers (1)

Rool Paap
Rool Paap

Reputation: 1976

If you want to simulate the tab bar in the viewcontrollers in your storyboard, have a look at the Attributes Inspector, section Simulated Metrics:

enter image description here

Instead of linking the MoreViewController to your TabController, link to a NavigationController and set its rootViewController to the MoreViewController. Now you can easily navigate to your other tableviewcontrollers.

Upvotes: 1

Related Questions