The nil coalescing operator unwraps an optional and returns the value inside if there is one. If there isn’t a value – if the optional was nil
– then a default value is used instead. Either way, the result won’t be optional: it will either by the value from inside the optional or the default value used as a back up.
Here’s a function that accepts an integer as its only parameter and returns an optional string:
func username(for id: Int) -> String? {
if id == 1 {
return "Taylor Swift"
} else {
return nil
}
}
If we call that with ID 15 we’ll get back nil
because the user isn’t recognized, but with nil coalescing we can provide a default value of “Anonymous” like this:
let user = username(for: 15) ?? "Anonymous"
That will check the result that comes back from the username()
function: if it’s a string then it will be unwrapped and placed into user
, but if it has nil
inside then “Anonymous” will be used instead.
SPONSORED Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.