< 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
.
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.
Link copied to your pasteboard.