I am trying to draw a repeating background image in my NSView, I have this till now:
// INIT - (id)initWithFrame:(NSRect)frame { if (self = [super initWithFram
You can create a pattern color with +[NSColor colorWithPatternImage:] and then just fill the background rectangle with that "color". That should do what you want to accomplish.