UIBezierPath - 添加圆角

时间:2017-02-14 10:06:31

标签: ios objective-c uibezierpath rounded-corners cashapelayer

我使用UIBezierPath画一条曲线。然而,曲线有效,我无法弯曲线的边缘。

enter image description here

如果你看一下曲线的顶端/底端,可以看到边缘变平了,这不是我想要的。有没有办法弯曲边缘?

我使用简单的UIBezierPath绘制(几乎)半圆。这会创建我想要的曲线形状:

CAShapeLayer *circle = [CAShapeLayer layer];
circle.path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(0, 0) radius:70 startAngle:1.0472 endAngle:5.23599 clockwise:NO].CGPath;
circle.fillColor = [UIColor clearColor].CGColor;
circle.strokeColor = [UIColor colorWithWhite:1.0 alpha:0.2].CGColor;
circle.lineWidth = 18.0;
circle.cornerRadius = 10.0;
circle.position = CGPointMake(100, 100);
circle.anchorPoint = CGPointMake(0.5, 0.5);
[mainView.layer addSublayer:circle];

尽管设置了cornerRadius属性,但角落并未弯曲。我做错了什么?

谢谢你的时间,Dan。

2 个答案:

答案 0 :(得分:8)

包括以下内容。

circle.lineCap = kCALineJoinRound;

对于Swift 3.0及以上版本

circle.lineCapStyle = .Round;

答案 1 :(得分:1)

Swift 4.0

circle.lineCap = kCALineCapRound

如果您希望您的线条交叉点也是圆角设置

circle.lineJoin = kCALineCapRound