Cocoa:从不同的菜单项更改对象属性

发布于 2024-08-30 20:14:17 字数 174 浏览 4 评论 0原文

如果我想从不同的菜单项(想想选项列表)更改观察到的对象的单个属性,那么经验法则是什么。

例如,我有一个在单个窗口中显示汽车的应用程序。我有一个菜单,其中的菜单项显示为[颜色],其中有几个子菜单项,如[黑色、绿色、蓝色、红色、白色等]。如何实现其背后的机制,以便每个子菜单项将相同的属性(在本例中为颜色)更改为不同的值。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋凉 2024-09-06 20:14:17

如果您使用目标操作 (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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文