我画了一条曲线:
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(context, firstPoint.x, firstPoint.y);
CGContextAddCurveToPoint(context, cpx1, cpy1, cpx2, cpy2, finalPoint.x, finalPoint.y);
现在我想沿着曲线的路径多次绘制图像。
有可能这样做吗?如果是这样,如何?