Skip to content

Instantly share code, notes, and snippets.

@estebanroblesluna
Created July 25, 2013 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save estebanroblesluna/6079220 to your computer and use it in GitHub Desktop.
Save estebanroblesluna/6079220 to your computer and use it in GitHub Desktop.
- (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