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 trialSzymon Kadłuczka
8,762 PointsI don't understand what am I supposed to do in this challenge..
The tabs are stored in an array named tabBarItems (line 9). Declare a UITabBarItem variable named tab and set it from tabBarItems. Use the selectedIndex we just set as the index for the tab you get from the tabBarItems array.
What do I need to do?
2 Answers
Kevin Hamil
8,203 PointsUITabBarItem *tab = [tabBarItems objectAtIndex:self.tabBarController.selectedIndex];
Szymon Kadłuczka
8,762 PointsI already managed to do that, but thank you for for posting answer. I hope this will help somebody in the future :)