gpt4 book ai didi

iphone - UIImageView 上的用户交互

转载 作者:行者123 更新时间:2023-12-03 18:51:58 25 4
gpt4 key购买 nike

我有许多 UIImageView,其顶部有按钮。

我想在这些按钮后面的 UIImageView 上启用用户交互。

我在 IB 中看到了该选项,但想知道如何在实际触摸 UIImageView 时触发一些代码。

如何做到这一点以及如何在代码而不是 IB 中将其设置为启用和禁用?

谢谢

最佳答案

how to trigger some code when the UIImageView is actually touched.

您有两个选择:

  1. 创建 UITapGestureRecognizer(或其他手势识别器)的实例,指定目标和操作方法。然后使用 -[UIView addGestureRecognizer:] 将手势识别器添加到 ImageView 。适用于操作系统 3.2+。

  2. 子类 UIImageView 并重写 -touches... 方法。确保您创建的 ImageView 是自定义子类的实例。

有关详细信息,请参阅文档。

how is it set to enabled and disabled in the code rather than IB

简单:imageView.userInteractionEnabled = YES;

关于iphone - UIImageView 上的用户交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4073598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com