相对于视图的CGPoint
考虑一个屏幕点(CGPoint)和一个视图(UIView),它位于视图层次结构内部的某个位置(它可以是其他视图的子视图)。
如何将点转换为相对于视图坐标的点?
Consider a screen point (CGPoint) and a view (UIView), which is somewhere inside the view hierarchy (it can be a subview of other views).
How can you convert the point to a point relative to the view's coordinates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,将点从屏幕坐标转换为主窗口坐标:
其次,将点从窗口坐标转换为视图坐标:
First, convert the point from screen coordinates to the coordinates of your main window:
Second, convert the point from window coords to view coords: