Swift version: 5.6
NSNumber
is an Objective-C class designed to store a variety of types of numbers. It was important in Objective-C because its primitive number types – integers, doubles, etc – could not be used in most of Apple’s APIs without wrapping them in an object such as NSNumber
, but mostly Swift does a good job of automatically converting its numbers to NSNumber
when you need it.
That being said, there are a few times when Swift won’t help you out, and you need to convert to NSNumber
by hand. For example, this code is designed to convert numerical numbers like 50 into textual numbers like “fifty”, but it won’t compile:
let number = 50
let formatter = NumberFormatter()
formatter.numberStyle = .spellOut
// this line won't work
// let string1 = formatter.string(from: number) ?? ""
The problem is that the string(from:)
method expects an NSNumber
and Swift isn’t able to automatically bridge the integer we created in number
. The fix here is nice and easy – just add as NSNumber
to help Swift bridge the two worlds:
let string2 = formatter.string(from: number as NSNumber) ?? ""
SAVE 50% To celebrate Black Friday, all our books and bundles are half price, 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.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.