触摸哪个物体

发布于 2024-11-01 04:01:19 字数 225 浏览 0 评论 0原文

这对你来说可能看起来很简单,但我想知道视图上正在触摸哪个对象...

我解释...在 viewDidLoad 方法中,我有几个以编程方式创建的对象(uiimageviews、标签、按钮等) 。

现在在touchesEnded方法中,我想知道哪个对象被单击了......如何?

我尝试了 [touch self] == UIImageView],但它不起作用......

谢谢

This may seems simple for you but I would like to know which object is being touched on a view...

I explain...in the viewDidLoad method, I have several objects which are created programmatically (uiimageviews, labels, buttons, etc).

Now in the touchesEnded method, I would like to know which object has been single tapped...how to?

I tried [touch self] == UIImageView], but it's not working...

Thanks

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

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

发布评论

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

评论(1

ゝ偶尔ゞ 2024-11-08 04:01:19

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event 回调提供您需要 touches 参数的信息。要提取获得触摸的视图,请使用:

UIView *touchedView = [[touches anyObject] view];

然后您可以进行比较:

if (myView == touchedView) {
   // do stuff
}

更多信息位于 developer.apple.com

The - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event callback provides the information you need the touches parameter. To extract the view that got the touch use:

UIView *touchedView = [[touches anyObject] view];

You can then compare:

if (myView == touchedView) {
   // do stuff
}

More info at developer.apple.com

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