作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将色调颜色应用于样式 inline
和视觉 bordered
的 NSButton下面是我正在使用的代码块
使用以下代码后
InlineButton.wantsLayer = YES;
InlineButton.layer.backgroundColor = [NSColor redColor].CGColor;
如何仅更改按钮的色调
任何建议都会更有帮助。
最佳答案
按钮的isBordered
属性与bezelStyle
属性相关。您可以设置不同的样式来检查外观。
如果您希望按钮图像具有特定颜色。尝试使用模板图像和 contentTintColor
。
let button = NSButton()
button.image = NSImage(named: NSImage.stopProgressFreestandingTemplateName)
button.image?.isTemplate = true
button.bezelStyle = .inline
button.isBordered = false
button.contentTintColor = NSColor.red
关于macos - 如何将色调颜色应用于 NSButton(内联样式) cocoa ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56788662/
我是一名优秀的程序员,十分优秀!