UIImageView
respond to a tap or other gesture and it's being stubborn and just ignoring you, make sure you've set userInteractionEnabled
to YES
. You can do this programmatically after the UIImageView
is created or loaded or in the Attributes Inspector pane in Interface Builder if the UIImageView
is defined in a NIB file. Naturally, userInteractionEnabled
defaults to NO
.
3 comments:
Glad it helped -- I was tearing my head out over this one also!
Ah man! I've been losing so much precious time because of this. Thanks!!!
Pascal
Post a Comment