Swift version: 5.6
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 From March 20th to 26th, you can join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer!
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.