Reputation: 1589
I am confused about how to implement a NSScrollView
in the most basic way, so I will describe exactly what I do and hope that it is just to late for me to find my error:
Creating new class inherited from NSView with the drawing method:
(void)drawRect:(NSRect)dirtyRect
{
[super drawRect:dirtyRect];
[[NSColor redColor] set];
NSRectFill(dirtyRect);
}
Define the view of the NSScrollView to be that new class.
I expected to see a NSScrollView with a red background. Instead, I see the scroll view with no modification.
Upvotes: 1
Views: 383