在快速的bezier路径圆中舍入笔划的边缘

时间:2015-12-19 18:04:06

标签: ios swift uibezierpath

我正在尝试使用UIBezierPath(ovalInRect: CGRectMake())绘制一个圆圈。然后我将更改strokeEnd属性。当发生这种情况时,圆形线的任一端都有尖角。有没有办法完善这些角落?

enter image description here(我想让这条线的起点和终点弯曲)

1 个答案:

答案 0 :(得分:1)

对于基于drawRect的解决方案,请使用lineCapStyle

let path = UIBezierPath(...) path.lineCapStyle = .round