我在iOS
使用过程中做了很多动画,UIBezierPaths
并且一直在手动调整控制点,直到得到我想要的曲线。有没有我可以购买的程序,它可以让我像 PS 钢笔工具那样使用手柄调整路径,然后为我映射控制点,或者有没有办法在PhotoShop、Illustrator 等中绘制曲线并转换它莫名其妙地一个UIBezierPath
。
我浪费了很多时间来调整这些动画,似乎必须有更好的方法。
UIBezierPath *runnerPath = [UIBezierPath bezierPath];
[runnerPath moveToPoint:P(1100, 463)];
[runnerPath addCurveToPoint:P(872, 357)
controlPoint1:P(967, 453)
controlPoint2:P(1022, 366)];
[runnerPath addCurveToPoint:P(503, 366)
controlPoint1:P(664, 372)
controlPoint2:P(699, 480)];
Kjuly回答:PaintCode,完美!