目标 C:确定“点击”的坐标
我试图使加载有动画数组的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您为 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".