Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is NSNumberFormatter the only way to format an NSDecimalNumber?

I'm using an NSDecimalNumber to store money in Core Data. I naively used stringWithFormat: at first to format the value, later realizing that it didn't support NSDecimalNumber and was instead formatting the pointer :(. So after some reading through the docs I learned to use the NSNumberFormatter to get the format I wanted. But this just strikes me as the "hard way". Is there any easier way than this:?

NSNumberFormatter * formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle: NSNumberFormatterCurrencyStyle];
priceField.text = [formatter stringFromNumber: ent.price];
[formatter release];
like image 417
Paul Alexander Avatar asked May 30 '10 21:05

Paul Alexander


2 Answers

on iOS 4.0 and later you can use this method:

NSString* currencyString = [NSNumberFormatter 
                                 localizedStringFromNumber:number
                                 numberStyle:NSNumberFormatterCurrencyStyle];
like image 123
Matt Stoker Avatar answered Oct 04 '22 04:10

Matt Stoker


There's nothing wrong with that approach, and it's the conventional pattern to convert opaque number classes to strings.

If I have a UIView that uses a formatter often, I'll usually have one as an instance member so I avoid having to repeatedly alloc/init/release the formatter.

like image 45
Shaggy Frog Avatar answered Oct 04 '22 04:10

Shaggy Frog