UIwindow 上的 UIimageView 上的触摸事件

发布于 2024-11-19 02:53:03 字数 170 浏览 6 评论 0原文

我在 UIWindow 之上使用 UIimageview。我想处理该 Imageview 的触摸事件,但我无法做到。

当我在UIview上使用UIimageView时,我们可以使用touchBegan,touchEnded,但是当它在UIWindow而不是UIView上时如何处理它。

谢谢..

I m using UIimageview on top of UIWindow. I want to handle touch event for that Imageview, but m not able to do it.

When i use UIimageView on UIview, we can use touchBegan, touchEnded but how to handle it when it is on UIWindow instead of UIView.

Thanks..

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

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

发布评论

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

评论(2

鱼窥荷 2024-11-26 02:53:03

如果您只想处理点击,则必须设置,

imageView.userInteractionEnabled = YES;

默认情况下UIImageViewuserInteractionEnabled属性设置为NO。并且您可以向其添加点击手势识别器,

UITapGestureRecognizer *tgr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(anyMethod)];
[imageView addGestureRecognizer:tgr];
[tgr release];

如果您想移动图像,可以使用UIPanGestureRecognizer。

If you just want to handle the tap, you have to set,

imageView.userInteractionEnabled = YES;

By default UIImageView has the userInteractionEnabled property set to NO. And you can add a tap gesture recognizer to it,

UITapGestureRecognizer *tgr = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(anyMethod)];
[imageView addGestureRecognizer:tgr];
[tgr release];

If you want to move the image, you can use UIPanGestureRecognizer.

很酷不放纵 2024-11-26 02:53:03
- (void)sendEvent:(UIEvent *)event

试试这个功能

- (void)sendEvent:(UIEvent *)event

try this function

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