美文网首页
【iOS】添加圆角的方法

【iOS】添加圆角的方法

作者: CoderHuangRui | 来源:发表于2016-12-13 10:48 被阅读12次

    1

    viewObj.layer.cornerRadius = 5.0;                                                               
    viewObj.layer.masksToBounds = YES;
    

    2
    在该对象的类的drawRect方法中中加上

    - (void)drawRect:(CGRect)rect {
        CGFloat cornerRadius = 8.0;                                      
        CGFloat width = rect.size.width;
        CGFloat height = rect.size.height;
        UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:rect byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(cornerRadius, cornerRadius)];
        [path addClip];
    }
    

    相关文章

      网友评论

          本文标题:【iOS】添加圆角的方法

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