24 lines
614 B
Swift
24 lines
614 B
Swift
//
|
|
// Extensions.swift
|
|
// Twigs
|
|
//
|
|
// Created by Billy Brawner on 10/12/19.
|
|
// Copyright © 2019 William Brawner. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Int {
|
|
func toDecimalString() -> String {
|
|
return String(format: "%.2f", Double(self) / 100.0)
|
|
}
|
|
|
|
func toCurrencyString() -> String {
|
|
let currencyFormatter = NumberFormatter()
|
|
currencyFormatter.locale = Locale.current
|
|
currencyFormatter.numberStyle = .currency
|
|
let doubleSelf = Double(self) / 100.0
|
|
return currencyFormatter.string(from: NSNumber(value: doubleSelf)) ?? ""
|
|
}
|
|
}
|
|
|