I need to create a view in OS X Cocoa that hides all but the last entered character (until that character is hidden after a set amount of time). Essentially I want to use a UITextField with textfield.secureTextEntry = YES in OS X Cocoa.
I couldn't find a way to import UITextField in OS X Cocoa. I don't think this is possible anyways, since NSTextField and UITextField are from two different frameworks.
NSSecureTextField in OS X Cocoa does not keep the last character visible for a set amount of time, and I could not find an instance or class property that I could set that would change this behavior.
I tried to roll my own implementation, starting from NSTextField and triggering events from keyUp:, but I'm running into problems with corner cases. My current approach is to change the text stored in NSTextField to hidden characters (all but last character, for a set amount of time, etc.). However with this technique, what happens when a user selects the 2nd thru 5th character in a 7-character password and deletes them. How can I then figure out which of the hidden characters were deleted, so that I can retrieve the correct entered password?
So I think if I need to roll my own implementation, I need to not change the actual text stored in the NSTextField, and instead alter the way that the view is displayed on the screen. However I can't find a way to do this currently. Help here would be appreciated.
I'll also say that I have a strong bias to not roll my own implementation. If anyone knows of a way that I can either leverage prior work or simply import UITextField to OS X Cocoa to solve this problem, I'd welcome (and strongly favor) those solutions.
NSTextFieldand provide a customdrawRect:but I think you might actually need to provide a customNSTextFieldCellinstead, and override itsdrawRect:inView:method. – dreamlax Feb 26 at 0:39