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