如何设置 NSMenuItem 操作的发送者?
Apple 文档说传递给 NSMenuItem 操作的发送者可以设置为某个自定义对象,但我似乎不知道如何执行此操作。有没有我在文档中没有看到的方法?
The Apple documentation says that the sender passed to the NSMenuItem's action can be set to some custom object, but I can't seem to figure out how to do this. Is there a method I'm not seeing someplace in the documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您指的是哪一份文档(链接会有所帮助)。
您可以使用
NSMenuItem
的-setRepresentedObject:
方法将任意对象与菜单项关联:然后,当菜单项发送其操作消息时,您可以获得该对象:
I'm not sure what piece of documentation you're referring to (a link would help).
You can use the
-setRepresentedObject:
method ofNSMenuItem
to associate an arbitrary object with a menu item:Then when the menu item sends its action message you can obtain the object: