๐Formatter+
import Foundation
// ๐Formatter + .currency
extension Formatter {
public static var currency: NumberFormatter {
let formatter = NumberFormatter()
formatter.numberStyle = .currency // โญ๏ธ $999.00
return formatter
}
}
Last updated
Was this helpful?