Updated for Xcode 14.2
We can run throwing functions using do
, try
, and catch
in Swift, but an alternative is to use try?
to convert a throwing function call into an optional. If the function succeeds, its return value will be an optional containing whatever you would normally have received back, and if it fails the return value will be an optional set to nil.
There are advantages and disadvantages to using optional try, but it mostly centers around how important the error is to you. If you want to run a function and care only that it succeeds or fails – you don’t need to distinguish between the various reasons why it might fail – then using optional try is a great fit, because you can boil the whole thing down to “did it work?”
So, rather than writing this:
do {
let result = try runRiskyFunction()
print(result)
} catch {
// it failed!
}
You can instead write this:
if let result = try? runRiskyFunction() {
print(result)
}
If that’s what you wanted to do then you could just make runRiskyFunction()
return an optional rather than throwing an error, but throwing and using optional try does give us the flexibility to change our mind later. That is, if we write a function that throws errors then at the call site we can either use try
/catch
or use optional try based on what we need at that point.
For what it’s worth, I use optional try a heck of a lot in my own code, because it does wonders for letting me focus on the problem at hand.
SPONSORED Thorough mobile testing hasn’t been efficient testing. With Waldo Sessions, it can be! Test early, test often, test directly in your browser and share the replay with your team.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.