michaelengland/FlipTheSwitch

View on GitHub
Example/Colors-OSX/ColoredViews/PurpleView.m

Summary

Maintainability
Test Coverage
#import "PurpleView.h"

@implementation PurpleView

- (void)drawRect:(NSRect)dirtyRect {
    // Fill in background Color
    CGContextRef context = (CGContextRef) [[NSGraphicsContext currentContext] graphicsPort];
    CGContextSetRGBFillColor(context, 0.8,0.2,1,1);
    CGContextFillRect(context, NSRectToCGRect(dirtyRect));
}

@end