Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
420 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 ...
2
votes
1answer
240 views

dateFromString return nil after change 24 hour

NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init]; [timeFormat setDateFormat:@"hh:mm a"]; NSDate* sourceDate = [timeFormat dateFromString:@"19/11/2010 12:00 am"]; if(sourceDate==nil) { ...
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
5answers
491 views

How to round off decimal number to 2 digits in iphone?

How can we round off decimal numbers to 2 digits in iphone ? For example , 5345 --> 535 --> 54 570 -- > 57 89523 -- > 90 I tried to use nsformatter for this and here is the code i used , ...
1
vote
1answer
421 views

NSFormatter dateFromString Problem with hour!

When i try to convert a NSString to NSDate... setDateFormat return me 3 hours more! Example NSDateFormatter *inFormat2 = [[NSDateFormatter alloc] init]; [inFormat2 setDateFormat:@"MM/dd/yyyy ...
1
vote
1answer
253 views

How to get NSFormatter subclass to work with NSTableColumn sort key and selector?

My setup: I have a sqlite database from which I populate a NSMutableArray of NSDictionary objects this is the DataSource for my NSTableView. One of the columns holds "time", the time is a float ...
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
2answers
153 views

NSNumberFormatter numberFromString returns 0 for currency style formatter

I tried to test the following code in order to get a double value from a currency-style formatted UITextField (ex : $ 30,034.12 => 30034.12) : // Init and configure formatter NSNumberFormatter ...
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
2answers
175 views

Problem formatting NSDate & NSString while using GData-Objectivec-client

I'm fighting with a strange situation: same code works different in two different projects. The one project is just empty command line utility with this code. The second project is with linked ...
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
574 views

How to make a custom NSFormatter work correctly on Snow Leopard?

I have a custom NSFormatter attached to several NSTextFields who's only purpose is to uppercase the characters as they are typed into field. The entire code for my formatter is included below. The ...
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 ...