Como alterar a cor do texto no UITabBarItem no iOS 5

com mais controle de aparência no iOS 5, como alteramos a cor do texto UITabBarItem? do branco padrão para outra cor?

EDIT: solução de trabalho

  [[UITabBarItem appearance] setTitleTextAttributes:
         [NSDictionary dictionaryWithObjectsAndKeys:
          [UIColor blackColor], UITextAttributeTextColor, 
          [UIColor whiteColor], UITextAttributeTextShadowColor, 
          [NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset, 
          [UIFont fontWithName:@"Rok" size:0.0], UITextAttributeFont, 
          nil] 
                                              forState:UIControlStateNormal];

questionAnswers(6)

yourAnswerToTheQuestion