目标 C:确定“点击”的坐标

发布于 2024-10-11 20:44:53 字数 106 浏览 4 评论 0原文

我试图使加载有动画数组的 UIImageView 在单击按钮时出现在按钮顶部。按钮的位置是随机的,因此我无法使用框架初始化 UIImageView。如何传入用户在屏幕上点击位置的 X 和 Y 坐标?

I'm trying to make a UIImageView loaded with an array for an animation appear on top of a button when it is clicked. The location of the buttons is random so I have no way of initializing the UIImageView with a frame. How do I pass in the X and Y coordinates of where the user taps on the screen?

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

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

发布评论

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

评论(1

梦回梦里 2024-10-18 20:44:53

当您为 UIButton 连接 IBAction 时,它会在调用时传递按钮对象本身。 UIButton 的框架属性应该为您提供所需的一切。

另外,在 iOS 上你不是“点击”,而是“点击”。

When you hook up the IBAction for the UIButton, it is passed the button object itself when it is called. The UIButton's frame property should give you everything you need.

Also, you don't "click" on iOS, you "tap".

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