I have a custom control that I use that has some (NSTextField *) NSCells in it. I have attempted at the cell level to disable all cells from usage, yet my loop that goes through all the cells seems to do nothing.
[myCell setEnabled:NO];
compile and run...
cell is still clickable and editable.
My final goal is to ofcourse disable only a few during runtime... but I cant even disable all of them during setup.