I have the following example:
// Currencies
var price: Double = 3.20
println("price: \(price)")
let numberFormater = NSNumberFormatter()
numberFormater.locale = locale
numberFormater.numberStyle = NSNumberFormatterStyle.CurrencyStyle
numberFormater.maximumFractionDigits = 2
I want to have the currency output with 2 digests. In case the currency digests are all zero I want that they will not be displayed. So 3,00 should be displayed as: 3
. All other values should be displayed with the two digests.
How can I do that?
You have to set
numberStyle
to.decimal
style to be able to setminimumFractionDigits
property depending if the floating point is even or not:You can also extend Formatter and create static formatters to avoid creating the formatters more than once when running your code:
Playground testing: