Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Colten Janssen
5,884 PointsHow to add an additional row of tab items to tab bar?
I am trying to add a second row of tab bar items to my tab bar when clicking the more button. By default the more button brings up a list of more items however i want it to be 2 rows of 5 items stacked directly ontop of each other.
1 Answer

Jack Ryder
7,286 PointsAs far as I know you can't have another 'tab bar' stacked on another.
I'd suggest initializing a view on top of the current view controller that looks like a tab bar if that's what you're after.
You'd have to create a custom View and then set it hidden/unhidden when pressing the more button.
Colten Janssen
5,884 PointsColten Janssen
5,884 PointsThank you Jack,
That is actually the route I ended up taking. I actually ended up using 2 custom Views instead of the tab bar so I could animate the initial View to move up and have the 2nd View become visible underneath it when the More button is pressed.
Thank you for your reply.