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 trialZhiren Jin
6,719 PointsUnable to complete Challenge Task
The code written bellow is perfectly compilable within the Xcode without display of any error but stated as not compilable in the code challenge, even-though no errors show up inside the Preview
struct Book {
let title: String
let author: String
let price: String?
let pubDate: String?
init?(dictionary: [String:String]) {
guard let title = dictionary["title"], let author = dictionary["author"] else {
return nil
}
self.title = title
self.author = author
self.price = dictionary["price"]
self.pubDate = dictionary["pubDate"]
}
}
1 Answer
Tassia Castro
iOS Development Techdegree Student 9,170 PointsHey Zhiren,
It seems that you can't name the parameter 'dictionary'. I replaced it by dict and it worked. I think they want us to name the parameter 'dict' but they forgot to mention that.
struct Book {
let title: String
let author: String
let price: String?
let pubDate: String?
init?(dict: [String:String]) {
guard let title = dict["title"], let author = dict["author"] else {
return nil
}
self.title = title
self.author = author
self.price = dict["price"]
self.pubDate = dict["pubDate"]
}
}
Zhiren Jin
6,719 PointsZhiren Jin
6,719 PointsThanks a lot Tassia!! I was just about to give up. Appreciated!