如何跟踪 NSMatrix 单元格中的鼠标悬停?
我想跟踪 NSMatrix 中 NSCell 的鼠标悬停事件。文档说我可以将 NSMatrix 模式设置为 NSTrackModeMatrix,当鼠标位于该单元格的范围内时,单元格将收到消息 trackMouse:inRect:ofView:untilMouseUp:
单元格,但是只有当我单击单元格时,此消息才会发送到该单元格。我误解了文档吗?如果是这样,我可以使用另一种方法来跟踪鼠标悬停事件吗?
谢谢
I would like to track a mouseover event of a NSCell in a NSMatrix. The documents say I can set the NSMatrix mode to NSTrackModeMatrix
and the cell will be sent the message trackMouse:inRect:ofView:untilMouseUp:
when the mouse is within the bounds of the cell, however this message is only sent to the cell when I click on the cell. I am misinterpreting the docs? If so is there another way I can use to track a mouseover event?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 mouseEntered:、mouseMoved:、mouseMoved: 等。
try mouseEntered:, mouseMoved:, mouseMoved: etc.