我可以使用[NSEvent mouseLocation]
来获取光标的位置,但这会给我屏幕坐标。如何获取光标相对于视图的坐标(当它在其中时)?我搜索了Apple文档但找不到答案。
如果它有所不同,我会希望不断检索鼠标位置,因为它将在每次帧更新时使用。
答案 0 :(得分:10)
为了完整性,有一种直接的方法可以在窗口坐标中获得鼠标位置(使用NSWindow)。根据您的窗口布局,这可能等同于视图的坐标。
NSWindow *myWindow;
NSPoint mousePos;
...
mousePos = [myWindow mouseLocationOutsideOfEventStream];
返回的坐标是窗口坐标,因此如果鼠标留在窗口/窗口下方,则返回负值。如果鼠标位于窗口右上方,则坐标将超出窗口大小。
答案 1 :(得分:7)
NSPoint myPoint =
[myView convertPoint:[myWindow convertScreenToBase:[NSEvent mouseLocation]]
fromView:nil];
答案 2 :(得分:7)
- (void)mouseMoved:(NSEvent *)event
{
NSPoint locationInView = [self convertPoint:[event locationInWindow]
fromView:nil];
}
还要确保已启用mouseMoved事件:
[window setAcceptsMouseMovedEvents:YES];