Skip to content

Instantly share code, notes, and snippets.

@7gano
Created September 3, 2014 04:12
Show Gist options
  • Save 7gano/1897c167c23a39e2599f to your computer and use it in GitHub Desktop.
Save 7gano/1897c167c23a39e2599f to your computer and use it in GitHub Desktop.
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextAddRect(context, CGRectMake(50, 50, 200, 250));
CGContextAddRect(context, CGRectMake(60, 60, 100, 100));
CGContextSetRGBFillColor(context, 0, 0, 1, 1);
CGContextDrawPath(context, kCGPathEOFill);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment