使用Swift在圈子UIView中的边框

问题描述 投票:4回答:3

我正在尝试用边框制作UIView,但我只是让它出现在UIView中,而不仅仅是在圆圈上。

sample

在棕色圆圈中,我想要一个黑色边框,但它必须在UIView中不在圆圈中。

我有一个名为Ball的课,我画圆圈。

class Ball: UIView {

    var desiredColour = UIColor.blueColor()

    struct mine {
        static var p = UIBezierPath(ovalInRect: CGRectMake(0,0,118,117))

    }

    override func drawRect(rect: CGRect) {
        // Drawing code


        desiredColour.setFill()
        mine.p.fill()

    }


    func colour() {

        var randColor: UIColor = Colors.randomColor()

        Colors.ballColor = randColor
        Colors.colorPosition = find(Colors.arrayColors, randColor)!

        desiredColour = randColor
        self.setNeedsDisplay()

    }
}

我用过代码:

override func drawRect(rect: CGRect) {
    // Drawing code


    desiredColour.setFill()

    let desiredBorderColor = UIColor.blackColor()
    desiredBorderColor.setStroke()

    self.layer.borderWidth  = 3.0
    self.layer.cornerRadius = self.frame.size.width/2.0

    mine.p.fill()
    mine.p.stroke()

}

但我得到一个小切口的边框:

enter image description here

ios swift uiview uibezierpath
3个回答
5
投票
override func drawRect(rect: CGRect) {
        // Drawing code


        desiredColour.setFill()

        let desiredBorderColor = UIColor.blackColor()
        desiredBorderColor.setStroke()

        mine.p.lineWidth = 2.0 //set to whatever you want

        mine.p.fill()
        mine.p.stroke()

    }

但请注意,对于工作边界,您需要在您周围留出一些空间。

请执行下列操作。声明myBorderWidth(类型为CGFloat)属性然后更改

static var p = UIBezierPath(ovalInRect: CGRectMake(0,0,118,117))

static var p = UIBezierPath(ovalInRect: CGRectMake(myBorderWidth/2,myBorderWidth/2,118-myBorderWidth/2,117-myBorderWidth/2))

您还可以通过将myBorderWidth/2声明为属性来删除重复的func drawBlackBorder(view: UIView) { view.layer.borderColor = UIColor.blackColor view.layer.borderWidth = 1.0 view.layer.cornerRadius = view.frame.size.width/2.0 view.backgroundColor = UIColor.brownColor }


8
投票

尝试通过将视图作为参数传递来调用此函数

var fillColor: UIColor //circle color
var strokeColor: UIColor //border color
var borderWidth: CGFloat //border width

override func draw(_ rect: CGRect) {
    fillColor.setFill()
    strokeColor.setStroke()

    let circlePath = UIBezierPath(ovalIn: CGRect(x: borderWidth, y: borderWidth, width: rect.width - borderWidth*2, height: rect.height - borderWidth*2))
    circlePath.lineWidth = borderWidth

    circlePath.stroke()
    circlePath.fill()
}

0
投票

无需修改图层,只需根据边框厚度设置具有适当插图的UIBezierPath并设置其宽度(在Swift 4.2上测试):

qazxswpoi
© www.soinside.com 2019 - 2024. All rights reserved.