I follow this answer change the bar items text color to white,but I have 6 tabbar items,I can't get the system button [more] item and change the text color.
How to change this [more] button text color to white? thx.
my code:
for (UITabBarItem* item in self.tabBar.items)
{
NSLog(@"title:%@",item.title); // only get my items
[item setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIFont fontWithName:@"AmericanTypewriter" size:11.0f], UITextAttributeFont,
[UIColor whiteColor], UITextAttributeTextColor,
[UIColor clearColor], UITextAttributeTextShadowColor,
[NSValue valueWithUIOffset:UIOffsetMake(0.0f, 1.0f)], UITextAttributeTextShadowOffset,
nil] forState:UIControlStateNormal];
}