当前位置:  开发笔记 > 编程语言 > 正文

当父不是窗口时,有没有办法获得相对于最内层NSView的坐标?

如何解决《当父不是窗口时,有没有办法获得相对于最内层NSView的坐标?》经验,为你挑选了1个好方法。



1> Jason Coco..:

您无需手动转换为本地坐标系.您可以通过将convertPoint:fromView:消息发送到视图来将点转换为本地坐标系.发送nil作为参数fromView将从视图的父窗口转换点(无论在哪里).您还可以发送任何其他视图以获取从该空间转换的坐标:

// convert from the window's coordinate system to the local coordinate system
NSPoint clickPoint = [self convertPoint:[theEvent locationInWindow] fromView:nil];

// convert from some other view's cooridinate system
NSPoint otherPoint = [self convertPoint:somePoint fromView:someSuperview];

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有