标签: objective-c touch
我创建了一个视图,其对象img是UIImageView的子类,我已将touchesEnded方法添加到img类。但是当我点击img类对象时,touchesEnded event不会被触发。
img
UIImageView
touchesEnded
touchesEnded event
有人知道出了什么问题吗?
谢谢!
答案 0 :(得分:1)
UIImageView将userInteractionEnabled属性设置为NO,因此它不会跟踪任何触摸事件。尝试将userInteractionEnabled设置为YES
userInteractionEnabled