It seems that calling selectCellAtRow:column right after the user has selected something in a radio button NSMatrix doesn't work. For example, the following code:
- (void)adjust
{
NSLog(@"adjust value=%d",value);
[[self radio] selectCellAtRow:value column:0];
}
- (void)awakeFromNib
{
value=1;
[self adjust];
}
- (IBAction)radio:(id)sender
{
value=[[self radio] selectedRow];
if (value==2)
value=0;
[self adjust];
}
Assuming "radio" is an outlet connected to a 3 way radio button, and radio: is the radio button's action. Pressing the third button in the radio button group will not revert to the first radio, as it should. Am I missing something basic about radio buttons here?