如何更改 iPhone 应用程序中 UISegmented 控件中的文本颜色?

发布于 2024-09-18 20:10:24 字数 66 浏览 6 评论 0原文

到目前为止我能想到的唯一解决方案是添加图像..但我想要正确的解决方案...所以我有什么方法可以更改文本/标题颜色???

The only solution that i can think of so far is by adding images.. but i want the right solution...so i there any way to change the text/title color???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

永言不败 2024-09-25 20:10:24

使用这个方法,是在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];

use this method, it is in 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];
蒗幽 2024-09-25 20:10:24

http://www.framewreck.net/ 2010/07/custom-tintcolor-for-each-segment-of.html

在这篇文章中,有一个类别的实现,可以满足您的需求。

从 iOS SDK 来看,没有方法可以直接执行此操作。

http://www.framewreck.net/2010/07/custom-tintcolor-for-each-segment-of.html

On this post there is the implementation of a category that does what you are looking for.

From iOS SDK, there is no method to do this directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文