Skip to content

Instantly share code, notes, and snippets.

@chourobin
Created October 6, 2012 17:10
Show Gist options
  • Save chourobin/3845503 to your computer and use it in GitHub Desktop.
Save chourobin/3845503 to your computer and use it in GitHub Desktop.
Set corner radius on only some corners
// Create the path (with only the top-left corner rounded)
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:imageView.bounds
byRoundingCorners:UIRectCornerTopLeft
cornerRadii:CGSizeMake(10.0, 10.0)];
// Create the shape layer and set its path
CAShapeLayer *maskLayer = [CAShapeLayer layer];
maskLayer.frame = imageView.bounds;
maskLayer.path = maskPath.CGPath;
// Set the newly created shape layer as the mask for the image view's layer
imageView.layer.mask = maskLayer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment