Swift version: 5.6
As of iOS 9.0, Apple introduced a simple way to make ordinal style numbers, which is a fancy way of saying 1st, 2nd, 3rd or 100th – the kind of numbers you normally write for dates, for example. This uses the NumberFormatterStyle.ordinal
style of writing numbers with NumberFormatter
, like this:
let formatter = NumberFormatter()
formatter.numberStyle = .ordinal
let first = formatter.string(from: 1)
let second = formatter.string(from: 2)
let tenth = formatter.string(from: 10)
let oneThousandAndFirst = formatter.string(from: 1001)
SPONSORED Let’s face it, SwiftUI previews are limited, slow, and painful. Judo takes a different approach to building visually—think Interface Builder for SwiftUI. Build your interface in a completely visual canvas, then drag and drop into your Xcode project and wire up button clicks to custom code. Download the Mac App and start your free trial today!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 9
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.