Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个单选按钮( NSMatrix 有 2 行和 1 列)并在头文件中将它们定义为 IBOutlet NSMatrix *temp;
现在,当我选择某个选项时,我想禁用这两个单选按钮,或者有时我想禁用第 1 行中的单选按钮。关于如何做到这一点的任何提示?我似乎找不到代理来做这件事。
谢谢。
// Disable top [[temp cellAtRow:0 column:0] setEnabled:NO]; // Disable bottom [[temp cellAtRow:1 column:0] setEnabled:NO]; // Disable both [temp setEnabled:NO];