I am trying to configure my TabBar in xcode, ios, however I just found ppl saying it is not configurable! Also, I found some solutions, but none of them work for me.
Basically I want to change the color of the UITabBarItem header (text), and also change 2 images inside it, normal and selected!
I tried iterating inside my UITabBar routines to see if I would find something, but any success:
for (UIView *view in [self.tabBarController tabBar].subviews) { NSLog(@"Class: %@",[view class]); }
output of this:
2011-05-18 18:15:24.031 EventApp[52235:207] Class: UIImageView 2011-05-18 18:15:24.032 EventApp[52235:207] Class: UITabBarButton 2011-05-18 18:15:24.032 EventApp[52235:207] Class: UITabBarButton 2011-05-18 18:15:24.033 EventApp[52235:207] Class: UITabBarButton 2011-05-18 18:15:24.033 EventApp[52235:207] Class: UITabBarButton 2011-05-18 18:15:24.034 EventApp[52235:207] Class: UITabBarButton
and I can not import UITabBarButton obj to work with it!
Some solution for this ?! I also posted a few links that I looked, but did not work!
UITabBarItem custom image / name on iPhone
uitabbaritem text color change
EDIT I want to do something like the following: 
source share