NSPopUpButton:菜单跟踪事件?
当用户鼠标(或以其他方式阅读) NSPopUpButton 中的项目时,是否可以检测到告诉我的控制器的操作?我似乎只收到有关新选择的通知,并且我希望在用户滚动菜单中的任何项目时收到通知。
谢谢
汤姆
Is it possible to detect actions that tell my controller when the user is mousing (or otherwise perusing) the items in an NSPopUpButton? I only seem to be notified on a new selection and I'd like to be notified as the user is rolling over any item in the menu.
thanks
tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将控制器设置为
NSPopUpButton
菜单的委托。当鼠标在菜单上移动时,您将收到-menu:willHighlightItem:
委托消息。You could set your controller as the delegate of the
NSPopUpButton
's menu. You will then be sent-menu:willHighlightItem:
delegate messages as the mouse tracks over the menu.