我需要在屏幕上设置鼠标的位置。在其他一些类似的问题中,建议使用CGDisplayMoveCursorToPoint(CGDirectDisplayID display, CGPoint point)
,但我不知道如何获取CGDirectDisplayID
。请告诉我如何获取CGDirectDisplayID
或其他方法来设置鼠标位置。
最佳答案
这个问题的真正答案是:
CGMainDisplayID()
https://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/Quartz_Services_Ref/index.html#//apple_ref/c/func/CGMainDisplayID
CGDisplayMoveCursorToPoint(CGMainDisplayID(), point);
关于macos - 如何设置鼠标位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10255995/