I'd like to know how I can implement a draggable object only when i touch a part that has colour. If i have an imageView
with a lot of transparent padding i want the user to be able to move it when he touches the image only and not when he touches anywhere in the image view.
I am adding a gesture recognizer to the object :
UIPanGestureRecognizer *panGestureReconizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(dragObjectWasMoved:)];