将圆角应用于使用UIBezierPath创建的弧

Gra*_*nit 8 objective-c uibezierpath

我正在使用UIBezierPath创建的循环进度条.进度条如下图所示:

在此输入图像描述

我的问题是:如何使圆弧的边缘变圆而不是矩形?

我用来绘制弧线的代码如下:

 // Draw the arc with bezier path
        int radius = 100;

        arc = [CAShapeLayer layer];
        arc.path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(100, 50) radius:radius startAngle:M_PI endAngle:M_PI/150 clockwise:YES].CGPath;
        arc.position = CGPointMake(CGRectGetMidX(self.view.frame)-radius,
                                    CGRectGetMidY(self.view.frame)-radius);
        arc.fillColor = [UIColor clearColor].CGColor;
        arc.strokeColor = [UIColor purpleColor].CGColor;
        arc.cornerRadius = 0.5;
        arc.lineWidth = 6;

        [self.view.layer addSublayer:arc];

        // Animation of the progress bar
        drawAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];
        drawAnimation.duration            = 5.0; // "animate over 10 seconds or so.."
        drawAnimation.repeatCount         = 1.0;  // Animate only once..
        drawAnimation.removedOnCompletion = YES;   // Remain stroked after the animation..
        drawAnimation.fromValue = [NSNumber numberWithFloat:0.0f];
        drawAnimation.toValue   = [NSNumber numberWithFloat:10.0f];
        drawAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
        [arc addAnimation:drawAnimation forKey:@"drawCircleAnimation"];
Run Code Online (Sandbox Code Playgroud)

我尝试使用,arc.cornerRadius但它似乎什么也没有返回.

任何帮助,将不胜感激.

先感谢您!

格兰尼特

Wai*_*ain 18

设置lineCapStylekCGLineCapRound(在贝塞尔曲线路径上)以圆边绘制线条的末端.

您还可以lineCap在形状图层上设置相同的操作.

  • 它应该在CAShapeLayer上设置,而不是在UIBezierPath上. (5认同)

Kum*_*amy 8

要使角落成圆,你可以使用它.

arc.lineCap = @"round";
Run Code Online (Sandbox Code Playgroud)