gpt4 book ai didi

macos - 绘制矩形中的 NSButton 着色图像

转载 作者:行者123 更新时间:2023-12-03 17:22:07 25 4
gpt4 key购买 nike

我想在绘制矩形中为按钮着色,但找不到正确的设置来为图像着色

- 该按钮是无边框的,带有灰度图像,我想对其进行着色

在我的 NSButton 子类中:

- (void)drawRect:(NSRect)dirtyRect{

if ([self.cell mouseDownFlags] == 0) {

[[NSColor redColor] set];

} else {

[[NSColor blackColor] set];

}

NSRectFillUsingOperation(dirtyRect, NSCompositePlusDarker);

[super drawRect:dirtyRect];
}

最佳答案

尝试使用setFill:

[[NSColor redColor] setFill];

...

关于macos - 绘制矩形中的 NSButton 着色图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21140461/

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