检测 iPhone 中 UIImageView 的触摸

发布于 2024-11-19 14:34:08 字数 99 浏览 1 评论 0原文

我正在 iPhone 上编写 King Chess 游戏。当用户触摸屏幕上的方块时,我想知道选择了哪个方块。

我正在使用 UIImageViews 在屏幕上显示正方形。

I'm programming a King Chess game on the iPhone. When the user touches a square on the screen, I want to know which square was selected.

I am using UIImageViews to show squares on the screen.

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

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

发布评论

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

评论(2

深爱成瘾 2024-11-26 14:34:08

UIImageview 在您的场景中是不可行的。您可以将 UIButton 与 customtype 一起使用并将图像分配给该按钮。所以它看起来像按钮,但你可以添加目标,并且你知道哪个方块触摸/按下。

希望这有帮助。

UIImageview would not be feasible in your scenario. You can use UIButton with customtype and assign image to that button. So it looks like button but you can add target and you know which square touch/pressed.

Hope this help.

滿滿的愛 2024-11-26 14:34:08

touchesEnded:方法,可以获取触摸的位置。
然后,您遍历所有图像视图(正方形),使用 CGRectIntersectsRect 并找到哪个方块被触摸。

in touchesEnded: method , u can get the position of ur touch.
Then , u go thru all the image views (squares) , comparing their frame positions using CGRectIntersectsRect and find which square is touched.

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