Users Pricing

forum

Home Forums Getting tap gesture on UICollectionViewCell in iOS. – MindStick

Getting tap gesture on UICollectionViewCell in iOS.

Anonymous User 2087 24 Dec 2015

I am created a collection view cell to display multiple images. My problem is how to get tap gesture on a small icon, which is on top right cell image.

I am using this code:

UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(projectSetting:)];
iconButton = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"imageName.png"]];
iconButton.frame = CGRectMake(50, 10, 50, 50);
[iconButton addGestureRecognizer:tapped];
[cell addSubview:iconButton];

Please anyone tell me what's wrong in my code?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md