为什么我的 UIImageView 不响应点击?

发布于 2024-09-11 07:55:52 字数 73 浏览 2 评论 0原文

我有一个从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

第七度阳光i 2024-09-18 07:55:52

您需要将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文