Reputation: 1878
How can I set background image a for an NSBox
? I know we can put a color, but what about background image?
Upvotes: 0
Views: 1084
Reputation: 22633
Check out +NSColor colorWithPatternImage:.
[myNSBox somehowSetBackgroundColor: [NSColor colorWithPatternImage: myImage]];
Upvotes: 3