ios – 在UIView的swift 3中的bezierPath,只需要曲线

ios – 在UIView的swift 3中的bezierPath,只需要曲线,第1张

概述当我在UIView上的 swift中绘制bezierPath时.我和它一起直线.我只需要曲线就可以去掉直线. 我可以删除灰色填充: line.fillColor = UIColor.clear.cgColor 不知道我怎么能删除直线 码: let line = CAShapeLayer() let linePath = UIBezierPath() linePath.move(to 当我在UIVIEw上的 swift中绘制bezIErPath时.我和它一起直线.我只需要曲线就可以去掉直线.

我可以删除灰色填充:
line.fillcolor = UIcolor.clear.cgcolor

不知道我怎么能删除直线

码:

let line = CAShapeLayer()    let linePath = UIBezIErPath()    linePath.move(to: start)    linePath.addline(to: end)    var dis = (end.x - start.x)/3.0    linePath.addCurve(to: start,controlPoint1: CGPoint(x: start.x + dis,y: start.y + dis),controlPoint2: CGPoint(x: end.x - dis,y: end.y - dis))    line.path = linePath.cgPath    line.strokecolor = UIcolor.red.cgcolor    //line.fillcolor = UIcolor.clear.cgcolor    line.linewidth = 4.0    line.opacity = 0.6    self.vIEw.layer.addSublayer(line)
解决方法 不要关闭路径.当您关闭贝塞尔曲线路径时,它会在路径的开头和结尾之间添加一条直线.如果你不关闭路径,那么它不应该这样做. (但是你不能填充非封闭的路径,只需要抚摸它.)

如果这对您没有帮助,您需要编辑问题以显示创建和绘制路径的代码.

总结

以上是内存溢出为你收集整理的ios – 在UIView的swift 3中的bezierPath,只需要曲线全部内容,希望文章能够帮你解决ios – 在UIView的swift 3中的bezierPath,只需要曲线所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1063524.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存