Closures Closures are self contained lines of code that can be passed around the application and similar to blocks in Objective-C. A typical closure syntax in Swift looks as shown below Closure Syntax [code language=”swift”]{ (parameters) -> return type in statements }[/code] Example closure in Swift [code language=”swift”]{ (name:String, message:String -> (String) in message + […]