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

iOS Implementing Designs for iPhone Customizing Table View Controllers Styling the Tab Bar

Anthony Martinez
Anthony Martinez
13,111 Points

Challenge Task 1 of 2: Using the UITabBarItem's appearance proxy, set the text color for both selected and unselected..

Challenge Task 1 of 2

Using the UITabBarItem's appearance proxy, set the text color for both selected and unselected tabs. Hint: use the 'setTitleTextAttributes:forState' method with the NSDictionary provided and 'UIControlStateNormal' as as the state parameter.

I was stuck here for longer than I care to admit. Solving this challenge requires a bit of creative thinking. Here's a hint:

  • You'll follow the steps in the video to utilize the 'appearance' message
  • PROTIP: see the declared dictionary in the challenge? We can use that.. think "dictionaryWithDictionary". If that doesn't solve the challenge for you, read on (PS: someone will correct me - dictionaryWithDictionary is a type of convenience constructor I think?)

Code to get you past step 1:

[[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithDictionary:titleTextAttributes] forState:UIControlStateNormal];

Huzzah!!!!!