Kevin
Kevin

Reputation: 1479

Selecting Item of NSMatrix programmatically

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.

Upvotes: 0

Views: 909

Answers (1)

Martin R
Martin R

Reputation: 540065

What about

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

in NSMatrix?

Upvotes: 3

Related Questions