如何更改 UITabBarItem 中文本的颜色?
Posted
技术标签:
【中文标题】如何更改 UITabBarItem 中文本的颜色?【英文标题】:How to chage the Color of text in UITabBarItem? 【发布时间】:2011-04-28 07:58:03 【问题描述】:在 UITabBarItem 中如何更改文本的颜色。默认情况下,文本以白色显示。我想换成黑色,怎么办?
【问题讨论】:
【参考方案1】:在 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;
【讨论】:
以上是关于如何更改 UITabBarItem 中文本的颜色?的主要内容,如果未能解决你的问题,请参考以下文章
自定义 UITabBarItem 的文本颜色和字体导致 swift 出现奇怪的结果
如何在 UITabBarItem 上设置不同的未选择图像和文本颜色