无法从文档控制器填充 NSMenu
我有一个 MainMenu.xib 和一个 MyDocument.xib。我需要从文档控制器动态填充一些 NSMenuItem,但我不知道如何从 MainMenu.xib 访问它。
我尝试将 NSObject 添加到 MainMenu.xib 并使其成为我的文档控制器的实例,但我无法从控制器上的 NSArrayController 填充 NSMenuItem。
我应该在代码中执行此操作还是有其他方法来解决此问题?
I've a MainMenu.xib and a MyDocument.xib. I need to dynamically populate some NSMenuItem's from my document controller but I'm at a loss on how to get to it from MainMenu.xib.
I've tried adding an NSObject to MainMenu.xib and make it an instance of my document controller but I can't populate the NSMenuItem's from the NSArrayController I have on the controller.
Should I just do this in code or is there another way of tackling this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 MyDocument.m 中:
尝试以下操作:
请参阅 Apple 文档中的应用程序菜单和弹出列表简介了解更多信息
In MyDocument.m:
try this:
See Introduction to Application Menus and Pop-up Lists in Apple docs for more