禁用/启用 IBOutlet 确定我是否得到触摸?

发布于 2024-12-12 05:47:34 字数 287 浏览 0 评论 0原文

我试图在我的应用程序上覆盖透明图像,目的是解释该视图的控件。当第一次触摸 UIImageView 时,它应该会消失。我的 MainViewController 已实现 TouchBegan/Ended 方法,并且它们工作正常,直到我将 UIImageView 连接到 MainViewController 中的 IBOutlet。只需停止响应事件即可。我做错了什么?

-MainView
--ScrollView
--OtherView
--UIImageView (this is the overlay)

I'm trying to overlay a transparent image over my app, with the purpose of explaining the controls of that view. When the UIImageView is first touched it should simply disappear. My MainViewController has the touchesBegan/Ended methods implemented and they work fine until I connect the UIImageView to an IBOutlet in MainViewController. Simply stop responding to events. What am I doing wrong?

-MainView
--ScrollView
--OtherView
--UIImageView (this is the overlay)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凶凌 2024-12-19 05:47:34

默认情况下,UIImageView 没有打开用户交互。如果您想要打开它,可以通过 IB、启用用户交互或通过代码设置属性...

[myImageView setUserInteractionEnabled:TRUE];

UIImageViews do not have user interaction turned on by default. If you want it on, either set the property via IB, User Interaction Enabled or via code...

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