iPad - UIImageView 响应触摸

发布于 2024-10-16 05:55:00 字数 62 浏览 0 评论 0原文

在 MonoTouch 中,如何获取 UIImage 或 UIImageView 在单击时触发委托或其他内容?

In MonoTouch how do I get a UIImage or UIImageView to fire off a delegate or something when clicked?

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

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

发布评论

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

评论(2

美人如玉 2024-10-23 05:55:00

正如 Dimitris 指出的那样,您需要继承 UIImageView 的子类,并确保 userInteractionEnabled 标志设置为 true。

我应该指出,在大多数情况下,人们打算让 UIImageView 响应交互,这些问题可以通过创建带有图像的 UIButton 实例轻松解决。

Exactly as Dimitris pointed out, you'll want to subclass UIImageView, and also ensure that the userInteractionEnabled flag is set to true.

I should point out that in most cases where people intend to have a UIImageView respond to interaction, these problems can just as easily be fixed by creating a UIButton instance with an image instead.

你怎么敢 2024-10-23 05:55:00

您必须根据您想要执行的操作对其进行子类化(UIImageView)并重写 TouchesBegan、TouchesMoved 或 TouchesEnded 方法之一。

You have to subclass it (the UIImageView) and override one of TouchesBegan, TouchesMoved or TouchesEnded methods, according to what you want to do.

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