Reputation: 730
I want to set my NSButton(not UIButton) background color to gradient color as like below image. I added background color for NSbuttoncell, But How to add gradient color ?
Upvotes: 0
Views: 718
Reputation: 47159
Use NSGradient.
- (instancetype)initWithStartingColor:(NSColor *)startingColor
endingColor:(NSColor *)endingColor
Upvotes: 0