Tagged Questions

3
votes
1answer
421 views

Make NSFormatter validate NSTextFieldCell continuously

In Cocoa, I have an NSOutlineView where the cells are NSTextFieldCell. The cell displays values which are strings that are formatted according to certain rules (such as floats or pairs of floats with ...
1
vote
0answers
22 views

NSFormatter and NSTokenField and setting the maximum length

I would like to use a custom NSFormatter to judge the length of a string inside of a NSTokenField. I have implemented the NSFormatter and hooked it up within the xib and all that, now when I get to ...
1
vote
1answer
454 views

Two Digit Years with NSDateFormatter not working

I have a 10.4 style date formatter applied to an NSTextFieldCell. I call setTwoDigitStartDate: (tried with both the epoch date and the "reference" date) but when I type in a date with a two digit year ...
0
votes
0answers
30 views

How to colorize input in NSTextField using NSFormatter?

I want to colorize the first char in the input string. It can be done easily with controlDidChange delegate method. But after adding formatter using: [field setFormatter:[[MyFormatter alloc] init]]; ...
0
votes
1answer
379 views

Where can I find NSFormatter example that implments NSTextField masks

In Qt and in C#, I am able to easily define a input mask for things like phone numbers and serial numbers. Everything I have read so far leads me to believe that NSFormatter is the answer, but I am ...
0
votes
0answers
125 views

How to set NSFormatter to accept negative integer values

The problem i have is when the formatter gets the string "-" or empty it fails to accept it. This makes entering a negative number a little bit uncomfortable. It also requires me to leave at least one ...
0
votes
1answer
186 views

Can a NSFormatter be used with a NSPopUpButton?

This question is similar to this one: http://stackoverflow.com/questions/821363/how-do-i-use-an-nsformatter-subclass-with-an-nspopupbutton As mentioned in that question, it seems like the 'formatter' ...
0
votes
1answer
549 views

How do I use an NSFormatter subclass with an NSPopUpButton

I want to use an NSFormatter subclass to format the contents of an NSPopUpButton I'm using to display a list of choices. Basically I have an NSArray of MyObjects which is bound to the NSPopUpButton ...