Created
October 6, 2012 17:10
-
-
Save chourobin/3845503 to your computer and use it in GitHub Desktop.
Set corner radius on only some corners
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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