美文网首页
创建 左上角是圆角的视图

创建 左上角是圆角的视图

作者: 流沙3333 | 来源:发表于2017-03-02 14:58 被阅读14次

- (void)layoutSubviews

{

[super  layoutSubviews];

UIBezierPath*  maskPath = [UIBezierPath bezierPathWithRoundedRect:UIRectCornerTopLeft byRoundingCorners:  cornerRadii:CGSizeMake(5.0,5.0)];

CAShapeLayer*  maskLayer = [CAShapeLayerlayer];

maskLayer.frame=self.bounds;

maskLayer.path= maskPath.CGPath;

self.layer.mask= maskLayer;

}

相关文章

网友评论

      本文标题:创建 左上角是圆角的视图

      本文链接:https://www.haomeiwen.com/subject/ghzhgttx.html