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

Robert Bojor
PLUS
Robert Bojor
Courses Plus Student 29,439 Points

'setFinishedSelectedImage:withFinishedUnselectedImage:' is deprecated in iOS 7.0

Finally ended up using the following code to replicate the deprecated method in case anyone else bumps into the same errors.

[tabInbox setImage:[[UIImage imageNamed:@"inbox"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]]; [tabInbox setSelectedImage:[[UIImage imageNamed:@"inbox"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];

Also, in iOS 7.0 I had to call [[UITabBar appearance] setTintColor:[UIColor whiteColor]] in order to get the tab bar tint to change - changing all the available option in the attributes panel to white did not affect the tab bar in any way.

1 Answer

Thank you!