コードが最初の実行後NSButtenCell
に選択済みの状態を変更するのはなぜですか?NSOnState
NSButtonCell *b=[[NSButtonCell alloc] init];
b=[self.myMatrix selectedCell];
[self.myMatrix selectCellAtRow:0 column:0];
if (b.state == NSOnState) {
NSLog(@"State is On");
}else{
NSLog(@"State is Off");
}
私に何ができる ?