使用するアプリケーションを開発しています
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
}
-(void)handleSingleTap:(UITapGestureRecognizer *)recognizer {
}
関数をtouch move
呼び出した後、iphone 3で私の問題が発生し、呼び出されませんでした。これは、画面の下部に移動したときにのみ発生し、タッチエンドが呼び出されませんでした。長く移動すると、呼び出されます。handleSingleTap
touchesEnded
touchesEnded
しかし、これはiPhone4とiPadで正常に動作しています。IPhone4 と IPadtouchsesMoved
では、呼び出し後touchesEnded
です。