Don McCaughey
Don McCaughey

Reputation: 9972

Why doesn't my UIImageView respond to taps?

I have a UIImageView that's being loaded from a NIB. I've hooked up a gesture recognizer to it to handle taps, but when I run the app, taps aren't being detected.

Upvotes: 5

Views: 1399

Answers (1)

Don McCaughey
Don McCaughey

Reputation: 9972

You need to set the userInteractionEnabled property to YES. It's NO by default. You can either set it in the NIB by checking "User Interaction Enabled" in the Attributes Inspector pane, or set it programmatically after the NIB is loaded by setting the userInteractionEnabled property on the UIImageView.

Upvotes: 13

Related Questions