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 つのラジオ ボタン (2 行 1 列の NSMatrix ) があり、ヘッダー ファイルで 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];