I have an NSTableView
with several columns, one of which is set up to use an NSSecureTextFieldCell
as its dataCell
. I am using a properly configured NSArrayController
to provide data to this table.
The problem is that my secure text field does not want to work. It shows an appropriate number of dots for the strings that it holds, but it is not editable! I am unable to make changes to the secure text.
Just to be sure, I did the same thing with a regular NSTextFieldCell
, and everything works like a charm. I have the bindings set up properly, and the column is set to be editable.
I was able to find a reference to the same problem on Apple's developer mailing list, but the workaround posted there is from 2006.
Is there a fix for this particular problem?
or
Does anyone have a better workaround, perhaps something that still allows the use of bindings?