I have an array of similar objects (thumbnails) on which I appended a singleFingerTap recognizer like this:
UITapGestureRecognizer *singleFingerTap =
[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(backgroundThumbnailTapped)];
[self addGestureRecognizer:singleFingerTap];
How can I know in my selector (backgroundThumbnailTapped) which of the thumbnails was tapped?