如何在iPhone SDK中使用手势在屏幕上绘图?

时间:2011-04-29 09:09:17

标签: ios cocoa-touch ios4 uitouch custom-draw

我想通过在屏幕上移动手指在屏幕上绘图。

我们如何在iPhone SDK中实现这一目标?

1 个答案:

答案 0 :(得分:1)

您首先需要实施UIResponder链中的触摸感应方法。您需要实现的方法是

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

在此方法中,您可以使用Core Graphics绘图方法绘制自定义绘图。 This教程将指导您完成各个步骤。