Swift version: 5.10
Like regular functions, closures can accept values and return values of your choosing: just write them out at the start of your closure, followed by the word in
.
For example, we could write a greeting
closure that accepts the name of a person to greet and returns a string using that name:
let greeting = { (name: String) -> String in
return "Hello, \(name)!"
}
You can now call that just like any other function, passing in someone’s name as its only parameter:
let message = greeting("Taylor")
SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.