Tagged Questions

1
vote
1answer
452 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
29 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 ...