For some reason, when my button is disabled, the text color turns white. I want it to stay black - how can i do that?
6 Answers
27
votes
You can subclass NSButtonCell and override a method:
- (NSRect)drawTitle:(NSAttributedString *)title withFrame:(NSRect)frame inView:(NSView *)controlView
{
if (![self isEnabled]) {
return [super drawTitle:[self attributedTitle] withFrame:frame inView:controlView];
}
return [super drawTitle:title withFrame:frame inView:controlView];
}
In this way, when button is disabled, the text will have the same color of text when button is enabled.
2
votes
1
votes
Update for swift 4:
override func drawTitle(_ title: NSAttributedString, withFrame frame: NSRect, in controlView: NSView) -> NSRect {
if !self.isEnabled {
return super.drawTitle(self.attributedTitle, withFrame: frame, in: controlView)
}
return super.drawTitle(title, withFrame: frame, in: controlView)
}
This will make text attributes the same as when button is enabled.
1
votes
In Mojave, any override of draw methods makes it impossible to change the backgroundColor of the NSbutton when highlighted. So I would rather recommend to use
- (BOOL)_shouldDrawTextWithDisabledAppearance
for this purpose. If you are using Swift 4, I would do the following in the Bridging header:
#import <AppKit/AppKit.h>
@interface NSButtonCell (Private)
- (BOOL)_shouldDrawTextWithDisabledAppearance;
@end
And in the subclass of NSButtonCell:
override func _shouldDrawTextWithDisabledAppearance() -> Bool {
return false
}