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 NSDecimalNu
Just convert it to a double and use "F"
[NSString stringWithFormat:@"%1.2F", [ent doubleValue]];