Skip to content

Instantly share code, notes, and snippets.

@mAu888
Created May 19, 2016 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mAu888/a90e13c54a596ff94590ddb0b3e8a7de to your computer and use it in GitHub Desktop.
Save mAu888/a90e13c54a596ff94590ddb0b3e8a7de to your computer and use it in GitHub Desktop.
struct Product {
let price: NSDecimalNumber
let locale: NSLocale
var priceString: String {
let formatter = NSNumberFormatter()
formatter.numberStyle = .CurrencyStyle
formatter.locale = locale
return formatter.stringFromNumber(price)!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment