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



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

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

你首先需要从UIResponder chain实现触摸感应方法。您需要实现的方法是

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

在这些方法中,您可以使用Core Graphics绘图方法来绘制自定义绘图。本教程将引导您完成这些步骤。

相关内容

  • 没有找到相关文章

最新更新