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 trialChris Snyder
2,461 PointsStoryboard with a Tab Bar Controller
Hi I am attempting to work through the 1st video walk through, but the video presentation shows each view as having a tab menu bar on the bottom. I am working with XCode 5 and currently do not see the same menu buttons on the bottom of my view controllers? Am I missing something?
Thanks!
2 Answers
Misha Shaposhnikov
8,718 PointsYes, the Ribbit app is a little outdated. If you look to the root view controller(should be called Tab Bar Controller) all the way to the left, you will see that the 3 tabs appear there. Since each tab segues into a separate navigation controller, each navigation controller has the appropriate tab. Also, views that segue from navigation controllers inherit the UITabBar by default.
Don't worry. You will be able to see all 3 tabs when the app is actually running. This is just how storyboard are laid out in newer versions of XCode to help make individual views more distinguishable.
Happy Coding! =)
Chris Snyder
2,461 PointsThanks Misha. I kept working and discovered what you mentioned in your reply. I appreciate it!