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

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

最佳答案

您首先需要实现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教程将引导您完成这些步骤。

关于ios - 如何在iPhone SDK中使用手势在屏幕上绘画?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5830169/

10-09 16:30