[Tips] UIImageView gesture recognizer not working

Because UIImageView by default have touch & multi-touch interaction disabled.

So have to change setting of UIImageView object.

[imageView setUserInteractionEnabled:YES];
[imageView setMultipleTouchEnabled:YES];

or

We hope this article help you :)