ドラッグ可能な画像のコーディングに成功しましたが、画面のどこかをランダムにクリックすると、そのポイントにテレポートするだけです。私はそれをしたくない !指が画像上にあるときにのみ画像をドラッグできるようにするにはどうすればよいですか? これは私が持っているコードです:
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:touch.view];
symbol1.center = location;
}
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
[self touchesBegan:touches withEvent:event];
}