美文网首页iOS
iOS 设置上下左右圆角

iOS 设置上下左右圆角

作者: 说不出口的喵 | 来源:发表于2018-06-29 13:49 被阅读6次

    CAShapeLayer*maskLayer = [CAShapeLayerlayer]; maskLayer.path = [UIBezierPathbezierPathWithRoundedRect:view.bounds byRoundingCorners:UIRectCornerBottomLeft|UIRectCornerBottomRightcornerRadii: (CGSize){5.0f,5.0f}].CGPath view.layer.masksToBounds =YES; view.layer.mask = maskLayer;

    UIRectCorner有五种

    UIRectCornerTopLeft    //上左

    UIRectCornerTopRight  //上右

    UIRectCornerBottomLeft  // 下左

    UIRectCornerBottomRight // 下右

    UIRectCornerAllCorners // 全部

    相关文章

      网友评论

        本文标题:iOS 设置上下左右圆角

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