-
-
Save BetrayalPromise/65ed4aa36e00a9b34f2a8a60a79677a7 to your computer and use it in GitHub Desktop.
Revisions
-
Fille created this gist
Jul 10, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #import <UIKit/UIKit.h> @interface UIView (RoundedCorners) - (void)setRoundedCorners:(UIRectCorner)corners radius:(CGSize)size; @end This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ #import "UIView+RoundedCorners.h" #import <QuartzCore/QuartzCore.h> @implementation UIView (RoundedCorners) - (void)setRoundedCorners:(UIRectCorner)corners radius:(CGSize)size { UIBezierPath* maskPath = [UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:corners cornerRadii:size]; CAShapeLayer* maskLayer = [CAShapeLayer new]; maskLayer.frame = self.bounds; maskLayer.path = maskPath.CGPath; self.layer.mask = maskLayer; } @end