I do not quite understand your question.
You can add UIGestureRecognizer to objects. You can also delete them.
- (void)removeTarget:(id)target action:(SEL)action
For instance:
[imageView addGestureRecognizer:singleTap]; [imageView removeGestureRecognizer:singleTap];
source share