Swift version: 5.6
The map()
method of optionals allows you to transform the optional if it has a value, or do nothing if it is empty. This makes for shorter and more expressive code than doing a regular unwrap, and doesn’t require you to change your data type.
For example, if you had an optional string like this one:
let name: String? = "twostraws"
You could use the map()
method to transform it safely, without having to check and unwrap it – if it were nil, the map()
call would do nothing.
For example:
let twitterName = name.map { "@\($0)" }
print(twitterName)
That will print @twostraws
.
SAVE 50% To celebrate WWDC23, 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.
Available from iOS – learn more in my book Pro Swift
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.