Cocoa:从不同的菜单项更改对象属性
如果我想从不同的菜单项(想想选项列表)更改观察到的对象的单个属性,那么经验法则是什么。
例如,我有一个在单个窗口中显示汽车的应用程序。我有一个菜单,其中的菜单项显示为[颜色],其中有几个子菜单项,如[黑色、绿色、蓝色、红色、白色等]。如何实现其背后的机制,以便每个子菜单项将相同的属性(在本例中为颜色)更改为不同的值。
What's the rule of thumb if I want to change observed object's single property from different menu items (think - list of options).
E.g. I have an app that displays a car in a single window. I have a menu with menu item that says [Colors] with few submenu items like [Black, Green, Blue, Red, White, etc.]. How do I implement the mechanism behind this so that each submenu item changes same property (in this case - color) to different values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用目标操作 (IBAction),只需将菜单指向同一对象中的同一方法,然后让该方法进行适当的更改。
如果您使用绑定,则将键路径设置为相同的属性。
If you're using target-action (IBAction) just point the menu at the same method in the same object and have the method make the appropiate changes.
If you're using bindings, then you set the keypath to the same attribute.