I'm attempting to make a drop shadow for a custom NSView subclass.
So far, I've managed:
- (id)initWithFrame:(NSRect)frame
{
self = [super initWithFrame:frame];
if (self)
{
NSShadow *dropShadow = [[NSShadow alloc] init];
[dropShadow setShadowColor: [NSColor redColor]];
[self setWantsLayer: YES];
[self setShadow: dropShadow];
}
return self;
}
- (void)drawRect:(NSRect)dirtyRect
{
[[NSColor blueColor] setFill];
NSRectFill(dirtyRect);
[super drawRect: dirtyRect];
}
which only renders a blue square (i.e. no shadow).
Am I setting up the drop shadow in the right place?
Am I meeting all of the necessary requirements for the use of setShadow:?