Reputation: 11
I'm trying to put a tabBar inside of another tabBar. I want a tabBar on the bottom of the screen and then another tabBar that inside that view that will be able to render different components. A good example would be the Yik Yak app with the 'Nearby' and 'My Herd' tabBar and then the 'new' and 'hot' tabBar within those two views.
Upvotes: 1
Views: 180
Reputation: 1617
You can accomplish this using a custom UISegmentedControl. You can customize it's appearance, and switch the visible view based on the selected segment!
Of course, you can also just use regular buttons to switch the visible view.
Upvotes: 1