I had the following code:
UITapGestureRecognizer *showStoryTapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(showNewsStory
You should enable user interaction for UIImageView object:
UIImageView
[self.storyImageView_ setUserInteractionEnabled:YES];
Try to remove the
[showStoryTapRecognizer setDelegate:self];
I don't think UITapGestureRecognizer has its delegate methods as far as I know.
UITapGestureRecognizer