标签: iphone cocoa-touch uiimageview gesture-recognition interaction
我有一个从NIB加载的UIImageView。我已经连接了一个手势识别器来处理水龙头,但是当我运行应用程序时,没有检测到水龙头。
答案 0 :(得分:13)
您需要将userInteractionEnabled属性设置为YES。默认情况下是NO。您可以通过选中“属性检查器”窗格中的“启用用户交互”在NIB中进行设置,也可以在加载NIB后通过在UIImageView上设置userInteractionEnabled属性以编程方式设置它。