到目前为止我能想到的唯一解决方案是添加图像..但我想要正确的解决方案...所以我有什么方法可以更改文本/标题颜色???
问问题
5217 次
2 回答
4
使用这个方法,它是在 ios 5.x
UIFont *Boldfont = [UIFont systemFontOfSize:13.0f];
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:Boldfont,UITextAttributeFont,[UIColor darkTextColor],UITextAttributeTextColor,nil];
[self.mSegmentControl setTitleTextAttributes:attributes
forState:UIControlStateNormal];
于 2012-07-31T19:20:07.380 回答
0
http://www.framewreck.net/2010/07/custom-tintcolor-for-each-segment-of.html
在这篇文章中,有一个类别的实现可以满足您的需求。
从 iOS SDK 中,没有方法可以直接执行此操作。
于 2010-09-15T04:53:30.717 回答