Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Closures in Swift 2 Closures in Cocoa Touch Using the Networking Code

Elaboration on purpose of calling a closure within a closure

I'm still not entirely clear on the benefit of passing a closure's arguments to another closure, as below:

let dataTask = session.dataTaskWithRequest(request) {data, response, error in
    // Execute body of closure
    completion(response!)
}

getRecentBlogPost() {response in 
    print(response)
}

Couldn't we have achieved the same thing by directly printing the response in the body of dataTaskWithRequest's completion handler, as below?

let dataTask = session.dataTaskWithRequest(request) {data, response, error in
    // Execute body of closure
    print(response)
}
Roger Antonell
Roger Antonell
18,252 Points

Hi Christine,

The Code that you show does exactly the same, but the difference between one approach and the other is that the first always will print the response. the second approach you can specify throw a closure expression what you wanna do with the response ,not just print