在 xcode 中获取 UIImageView 的位置

发布于 2024-11-25 03:55:54 字数 170 浏览 1 评论 0原文

嘿,我做了一个项目,其中随机创建多个 UIImageView,并且所有这些都通过 NSTimer 在屏幕上移动。

有没有办法检测移动的UIImageView的当前位置?

移动图像是一个气球,我想“弹出”或者更像是当用户点击任何气球时删除 UIImageView。

感谢您的帮助。

Hey I made a project where multiple UIImageView is randomly created and all of them moves up the screen by NSTimer.

Is there any way to detect the current position of the moving UIImageView?

The moving image is a balloon and I want to "pop" or more like remove the UIImageView when the User taps any of the balloons.

Thanks for your help.

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

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

发布评论

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

评论(1

書生途 2024-12-02 03:55:54

尝试使用 UIImageView 的框架属性。

if(xValue>CGRectGetMinX(balloon.frame) && xValue<CGRectGetMaxX(balloon.frame) &&
yValue>CGRectGetMinY(balloon.frame) && yValue<CGRectGetMaxY(balloon.frame)) {
  //pop the balloon
}

Try using the frame property of the UIImageView.

if(xValue>CGRectGetMinX(balloon.frame) && xValue<CGRectGetMaxX(balloon.frame) &&
yValue>CGRectGetMinY(balloon.frame) && yValue<CGRectGetMaxY(balloon.frame)) {
  //pop the balloon
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文