setAction:始终通过 mouseUp 调用
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不; 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.)