可可坐标和碳坐标之间的转换?
我正在寻找一种强大的(我的意思是在所有多显示器配置中工作)算法来将可可点/矩形转换为碳当量以及相反的操作。
我用谷歌搜索过,但找不到可以正常工作的东西。
预先感谢您的帮助。
问候,
I am looking for a robust (I mean working in all multi-munitor configuration) algo to convert a cocoa point/rect to carbon equivalent and the reverse operation.
I've googled but was unable to find something which work properly.
Thanks in advance for your help.
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
经过几次迭代后,我在
NSScreen
上找到了以下类别:即使在多个显示器上也能正常工作。
After several iterations I got to the following category on
NSScreen
:This works fine even with multiple displays.
来自 UIElementInspector 的 Apple 代码中发布的代码结果是有错误的,因为它没有考虑非主屏幕的起源。固定(和重构)的代码如下所示:
The posted code from Apple's code from UIElementInspector turn out to be buggy, in that it doesn't account for the origin of a non-main screen. The fixed (and refactored) code looks like this:
或者从 UIElementInspector 示例项目中获取 Apple 的代码:
Or take Apple's code from UIElementInspector sample project: