< Why are Swift’s closure parameters inside the braces? | Why would you want to use closures as parameters? > |
Updated for Xcode 14.2
Closures in Swift have a distinct syntax that really separates them from simple functions, and one place that can cause confusion is how we accept and return parameters.
First, here’s a closure that accepts one parameter and returns nothing:
let payment = { (user: String) in
print("Paying \(user)…")
}
Now here’s a closure that accepts one parameter and returns a Boolean:
let payment = { (user: String) -> Bool in
print("Paying \(user)…")
return true
}
If you want to return a value without accepting any parameters, you can’t just write -> Bool in
– Swift won’t understand what you mean. Instead, you should use empty parentheses for your parameter list, like this:
let payment = { () -> Bool in
print("Paying an anonymous person…")
return true
}
If you think about it, that works just the same as a standard function where’d write func payment() -> Bool
.
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.