- (void) drawRect:(CGRect)rect on: (id)context | |
{ | |
CGContextSetFillColor(context, [self backgroundColor]); | |
CGContextFillRect(context, [self bounds]); | |
CGContextSetLineWidth(context, 0.5); | |
CGContextSetStrokeColor(context, [self foregroundColor]); | |
CGContextStrokeRect(context, [self bounds]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment