子供向けの小さなお絵描きアプリを作りたいです。マルチタッチ描画アプリケーションを実装したくないので、描画ビューに対して multipleTouchEnabled を false に設定しました。
描画は今のところ問題なく動作しますが、子供が 2 本目の指でビューに触れると、ビューの touchesMoved-eventhandler が呼び出されます。
- (void) touchesMoved: (NSSet *) touches withEvent: (UIEvent *)event{
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchPoint = [touch locationInView:self];
//Draw a line from the last touchPoint to here…
}
これにより、子供が 2 本目の指で画面に触れると、意図しない線が 1 本目の指から 2 本目の指まで引かれます。
これを防ぐ方法はありますか?
どんな助けでも大歓迎です