美文网首页
圆角虚线

圆角虚线

作者: woo_5857 | 来源:发表于2021-09-13 15:46 被阅读0次

    圆角虚线

    let borderLayer = CAShapeLayer()

            borderLayer.strokeColor = UIColor.red.cgColor

                    borderLayer.lineDashPattern = [3,3]

                    borderLayer.backgroundColor = UIColor.clear.cgColor

                    borderLayer.fillColor = UIColor.clear.cgColor

            bgView.layer.addSublayer(borderLayer)

            borderLayer.path = UIBezierPath(roundedRect: bgView.bounds, cornerRadius: 8).cgPath

    相关文章

      网友评论

          本文标题:圆角虚线

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