检测触摸点的控制/视图
当触摸发生时,我可以从触摸发生的位置获取 CGPoint。现在,我想知道现场的 UI 元素(无论是控件还是视图)是什么,有没有办法做到这一点?
When the touch happens, I can get the CGPoint from where the touch was happening. Now, I want to know what is the UI element (be it a control or view) at the spot, is there a way to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找
-[UIView hitTest:withEvent:]
方法:You're looking for the
-[UIView hitTest:withEvent:]
method: