我想使用UIPanGestureRecognizer
绘制用户在屏幕上绘制的路径。
我使用以下功能但没有任何结果。
请告诉我我在哪里做错了。
- (void)pan:(UIPanGestureRecognizer *)sender{
[[UIColor greenColor]set];
CGContextRef context=UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 1.0f);
if (sender.state==UIGestureRecognizerStateBegan) {
CGContextMoveToPoint(context, [sender locationInView:self.view].x, [sender locationInView:self.view].y);
NSLog(@"touch phase began");
}
CGContextAddLineToPoint(context, [sender locationInView:self.view].x, [sender locationInView:self.view].y);
if (sender.state==UIGestureRecognizerStateEnded)
CGContextStrokePath(context);
}
先谢谢你