ios – UIBezierPath – 添加圆角

前端之家收集整理的这篇文章主要介绍了ios – UIBezierPath – 添加圆角前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用UIBezierPath绘制一条曲线.然而,曲线有效,我无法弯曲线的边缘.

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

我使用一个简单的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属性,但角落不会弯曲.我究竟做错了什么?

谢谢你的时间,丹.

解决方法

包括以下这些.
circle.lineCap = kCALineJoinRound;

适用于Swift 3.0及以上版本

circle.lineCapStyle = .Round;
原文链接:https://www.f2er.com/iOS/328847.html

猜你在找的iOS相关文章