Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.