移动使用CGContextAddArc绘制的弧iOS目标c

时间:2017-04-26 04:51:18

标签: ios xcode cgcontext uitouch

我使用下面的代码绘制了一个弧,

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

如果不能如何编程可以使用上述方法移动的弧形。?

0 个答案:

没有答案