Skip to content

Instantly share code, notes, and snippets.

@Nub
Created September 17, 2011 05:36
Show Gist options
  • Select an option

  • Save Nub/1223659 to your computer and use it in GitHub Desktop.

Select an option

Save Nub/1223659 to your computer and use it in GitHub Desktop.
- (void)drawRect:(CGRect)rect
{
UIBezierPath *roundRect = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(10, 10, 100, 100) byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(5, 5)];
[[UIColor blueColor] set];
[roundRect stroke];
[roundRect fill];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment