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 trialPierre-Emmanuel Turcotte
13,670 PointsI 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.
import Foundation
// Add your code below
typealias BlogPostCompletion = (data: NSData!, response: NSURLResponse!, error: NSError!) -> ()
func fetchTreehouseBlogPosts (completion: BlogPostCompletion) -> Void {
}
1 Answer
Chase Marchione
155,055 PointsHi 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!
Pierre-Emmanuel Turcotte
13,670 PointsPierre-Emmanuel Turcotte
13,670 PointsBump
Anyone? I've finished the series yet I am not able to complete this exercise...