Skip to content

Instantly share code, notes, and snippets.

@jparishy
Created August 13, 2013 21:25
Show Gist options
  • Save jparishy/6225844 to your computer and use it in GitHub Desktop.
Save jparishy/6225844 to your computer and use it in GitHub Desktop.
self.circleImageView.image = ^{
UIGraphicsBeginImageContextWithOptions(size, NO, UIScreen.mainScreen.scale);
[UIColor.ft_lightBlueColor set];
[[UIBezierPath bezierPathWithOvalInRect:CGRectInset(self.circleImageView.bounds, 1.0f, 1.0f)] stroke];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment