Swift version: 5.10
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)
SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
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.