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 Build a Weather App with Swift Managing Complexity Callback Methods With Closures

I cannot seem to nail the method fetchTreehouseBlogPosts declaration.

This is what I have so far.

I get an error to check the method's name and syntax, but the output gives me nothing. Furthermore, in a playground, I get no error.

What am I missing? Any input would be appreciated.

Callbacks.swift
import Foundation

// Add your code below
typealias BlogPostCompletion = (data: NSData!, response: NSURLResponse!, error: NSError!) -> ()


func fetchTreehouseBlogPosts (completion: BlogPostCompletion) -> Void {
}

Bump

Anyone? I've finished the series yet I am not able to complete this exercise...

1 Answer

Chase Marchione
Chase Marchione
155,055 Points

Hi Pierre-Emmanuel,

Looks like the issue concerns the void return type, and what statement it should belong to: the typealias. (My hunch is that you were attempting to handle the void with those empty parentheses.)

typealias BlogPostCompletion = ((NSData!, NSURLResponse!, NSError!) -> Void)

// Add your code below
func fetchTreehouseBlogPosts (completion: BlogPostCompletion) {
}

Hope this helps!