Swapnil
Swapnil

Reputation: 1878

NSBox background image

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

Answers (1)

Patrick Perini
Patrick Perini

Reputation: 22633

Check out +NSColor colorWithPatternImage:.

[myNSBox somehowSetBackgroundColor: [NSColor colorWithPatternImage: myImage]];

Upvotes: 3

Related Questions