次のジェスチャ認識機能を追加しました。
UIPanGestureRecognizer *d2 = [[UIPanGestureRecognizer alloc]
initWithTarget:self
action:@selector(ViewDragging2:)];
[d2 setMinimumNumberOfTouches:2];
[d2 setMaximumNumberOfTouches:2];
[targetView addGestureRecognizer:d2];
そのイベントが発生したときに発生するメソッドは次のとおりです。
-(void)ViewDragging2:(UIPanGestureRecognizer*)sender {
// some point
CGPoint translatedPoint = [(UIPanGestureRecognizer*)sender translationInView:targetView];
}
2本の指で触れてもワンタッチのポイントになります。ファーストタッチとセカンドタッチのコードを取得するにはどうすればよいですか?