setAction:始终通过 mouseUp 调用

发布于 2024-11-26 19:57:12 字数 192 浏览 3 评论 0原文

我的 mac 应用程序中有一个由 NSButtonCells 组成的 NSMatrix。我这样做:

[matrix setAction:@selector(matrixbutton:)];

但是,当用户释放鼠标单击时,总是会调用它。是否可以更改此设置,以便鼠标按下时立即调用它?

谢谢。

I have in my mac app an NSMatrix made up of NSButtonCells. I do this:

[matrix setAction:@selector(matrixbutton:)];

However this is always called when the user releases the mouse click. Is it possible to alter this so it is called as soon as the mouse goes down?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嗫嚅 2024-12-03 19:57:12

不; Mac 上的控件在鼠标松开时激活,而不是在鼠标按下时激活。 (否则,例如,无法区分单击和拖动,因为两者都是从按下鼠标开始的。)

No; controls on the Mac activate on mouse-up, not mouse-down. (Otherwise, it's impossible to distinguish between a click and a drag, for instance, since both begin with a mouse-down.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文