检测 iPhone 中 UIImageView 的触摸
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
在 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.