0

私は描画アプリをやっていますが、次の問題があります。画面に描画する必要があるポイントの配列があります。in (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;配列にタッチ ポイントを追加し、ビューを再描画します。しかし問題は、指を動かす速度が速すぎると、ポイントが継続的に追加されないことです。

4

1 に答える 1

0

I would make a CGPoint for last touch and one for current touch, then calculate the distance. If the distance is to far (meaning that the user moved to fast), draw dots in between them.

于 2012-07-27T23:52:54.687 に答える