i have an image that i drag around in my screen but, no matter where i touch the screen the image come to my finger and start dragging and for all the video i watched and all blog and article all that people are showing is how to do so ... its not what i want .. what i want is to start dragging the image only when i touch the image .. heres my code
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *Drag = [ [ event allTouches ] anyObject ];
Dot.center = [ Drag locationInView: self.view ];
[self checkCollison];
}
thank you