在之前的项目中,我使用了一个 NSMatrix 对象来实现三个单选按钮。I did not have an action tied to these buttons, they were bound to an @property so that when a different radio button was chosen, the property's value changed.
现在我想再添加一个这样的选择器,但是 NSMatrix 已经被淘汰了。我可以很好地添加按钮,但现在我必须(必须吗?)将它们附加到 -action 并使用 [self setProperty: [sender tag]] 之类的手动更改属性;
使用绑定对我来说似乎是一种更好的方法,因为我不必使用 -action 方法或语句来分配属性的值。
有没有办法在被弃用的 NSMatrix 新范式中使用绑定?