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
.
SPONSORED In-app subscriptions are a pain to implement, hard to test, and full of edge cases. RevenueCat makes it straightforward and reliable so you can get back to building your app. Oh, and it's free if your app makes less than $10k/mo.
Sponsor Hacking with Swift and reach the world's largest Swift community!
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.