我使用下面的代码绘制了一个弧,
CGPoint circleCenter = CGPointMake(self.bounds.size.width / 2, self.bounds.size.height / 2);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 20.0);
CGContextSetStrokeColorWithColor(context,[UIColor redColor].CGColor);
CGContextAddArc(context, circleCenter.x , circleCenter.y, 100, [self radians:315], [self radians:135], 1);
CGContextStrokePath(context);
现在我需要知道我可以使用下面的方法在圆形路径中移动此弧。
- (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(nullable UIEvent *)event
如果不能如何编程可以使用上述方法移动的弧形。?