gpt4 book ai didi

objective-c - 如何设置 NSButtonCell 文本标签的颜色

转载 作者:太空狗 更新时间:2023-10-30 03:46:42 25 4
gpt4 key购买 nike

如何设置 NSButtonCell 的标签(标题)文本的颜色,即表格 View 的列单元格?在我的例子中,它是一个复选框按钮单元格。 (是否可以使用IB?)

最佳答案

试试这个,我认为它是完美的。

NSColor *color = [NSColor redColor];
NSMutableAttributedString *colorTitle =
[[NSMutableAttributedString alloc] initWithAttributedString:[button attributedTitle]];

NSRange titleRange = NSMakeRange(0, [colorTitle length]);

[colorTitle addAttribute:NSForegroundColorAttributeName
value:color
range:titleRange];

[button setAttributedTitle:colorTitle];

关于objective-c - 如何设置 NSButtonCell 文本标签的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3932796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com