gpt4 book ai didi

objective-c - OSX - 如何更改 NSButton 标题颜色

转载 作者:行者123 更新时间:2023-12-03 16:40:30 30 4
gpt4 key购买 nike

我的项目有按钮以及默认标题颜色为黑色的复选框,我想将标题颜色更改为红色

最佳答案

以下是在 Controller 中设置按钮标题颜色的代码:

 NSColor *color = [NSColor greenColor];
NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
[style setAlignment:NSCenterTextAlignment];
NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:
color, NSForegroundColorAttributeName, style, NSParagraphStyleAttributeName, nil];
NSAttributedString *attrString = [[NSAttributedString alloc]
initWithString:@"Title" attributes:attrsDictionary];
[self.button setAttributedTitle:attrString];

也许这就是你想要的。

关于objective-c - OSX - 如何更改 NSButton 标题颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34993761/

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