为什么我的 UIImageView 不响应点击?
我有一个从 NIB 加载的 UIImageView。我已经将手势识别器连接到它来处理点击,但是当我运行该应用程序时,没有检测到点击。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 userInteractionEnabled 属性设置为 YES。默认情况下是“否”。您可以通过在“属性检查器”窗格中选中“用户交互已启用”在 NIB 中进行设置,也可以在加载 NIB 后通过在 UIImageView 上设置 userInteractionEnabled 属性以编程方式进行设置。
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.