1

私は初心者です。NSMatrix に問題があります。複数の NSMatrix を作成しましたが、最初にロードしたいのですが、チェックされていません。このコードを使用してそれらを作成しましたが、常にチェックされました。

 prototype= [[NSButtonCell alloc] init];
    [prototype setTitle:@""];
    [prototype setButtonType:NSRadioButton];
    NSRect matrixRect = NSMakeRect(400, textfield_Y, 50, 20);
    myMatrix = [[NSMatrix alloc] initWithFrame:matrixRect
                                          mode:NSRadioModeMatrix
                                     prototype:(NSCell *)prototype
                                  numberOfRows:1
                               numberOfColumns:1];
    [myMatrix setTag:300+i];
    //[myMatrix setAction:@selector(radioButtonClicked:)];
    [myMatrix setTarget:self];
    NSArray *cellArray = [myMatrix cells];
    [[cellArray objectAtIndex:0] setTag:0];
    [guiView addSubview:myMatrix];
    [prototype release];
    [myMatrix release];

何か案は?どうもありがとう

4

1 に答える 1

2

NSButtonCell では、次のsetStateメソッドを使用しNSCellます。

[prototype setState:NSOffState]

于 2013-08-08T08:56:33.097 に答える