Как изменить цвет текста в UITabBarItem? - PullRequest
2 голосов
/ 28 апреля 2011

В UITabBarItem, как изменить цвет текста. По умолчанию текст отображается в whiteColor.Хочу поменять на черный, как это сделать?

1 Ответ

0 голосов
/ 08 июня 2012

В ViewController.m

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
{
[self.tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor greenColor],UITextAttributeTextColor,nil] forState:UIControlStateNormal];
}
return self;
}
...