Selecting Item of NSMatrix programmatically

2019-09-05 13:50发布

问题:

How can I programmatically select one of the items in an NSMatrix? I believe it is an NSControl so I was looking in that particular documentation, however I could not find any information on the specific topic.

回答1:

What about

-(void)selectCellAtRow:(NSInteger)row column:(NSInteger)column

in NSMatrix?