Mercurial > public > geoquiz
view GeoQuiz/Components/FormatterExtension.swift @ 15:f1967f8cc67b
first iteration of core data
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Wed, 19 Oct 2022 10:04:17 +0200 |
parents | a793f33f05fb |
children |
line wrap: on
line source
// // Formatters.swift // GeoQuiz // // Created by Dennis Concepción Martín on 8/10/22. // import Foundation extension Formatter { static let withSeparator: NumberFormatter = { let formatter = NumberFormatter() formatter.numberStyle = .decimal return formatter }() } extension Int { var formattedWithSeparator: String { return Formatter.withSeparator.string(for: self) ?? "" } }