Skip to content

Instantly share code, notes, and snippets.

@gliubc
Last active September 23, 2021 07:50
Show Gist options
  • Save gliubc/352d97c3f33688d3668d44b6e49a751d to your computer and use it in GitHub Desktop.
Save gliubc/352d97c3f33688d3668d44b6e49a751d to your computer and use it in GitHub Desktop.
- (void)layoutSubviews {
[super layoutSubviews];
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.shopLabel.bounds byRoundingCorners:UIRectCornerTopLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];
CAShapeLayer *shape = [CAShapeLayer new];
[shape setPath:maskPath.CGPath];
self.shopLabel.layer.mask = shape;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment