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 trialALEKSANDR KONAKOV
Courses Plus Student 2,555 PointsTried the code in a playground of Xcode 7 - it's OK. Don't see any errors in a preview Window here.
struct Book {
let title: String
let author: String
let price: String?
let pubDate: String?
init?(arr: [String : String]) {
if arr["title"] == nil {return nil}
if arr["author"] == nil {return nil}
self.title = arr["title"]!
self.author = arr["author"]!
self.price = arr["price"]
self.pubDate = arr["pubDate"]
}
}
I'd very appreciate if you could tell me where I'm wrong.
1 Answer
Jens Hagfeldt
16,548 PointsHi ALEKSANDR
Yes you should use dict instead of arr if you want to pass the code challenge... Naming is crucial.
Also when checking your non-optional keys, instead of using if arr["title"] == nil {return nil} try in using the guard syntax that Pasan showed us in the previous video to check for that first instead. I've included the code for that down here below...
guard let bookTitle = dict["title"], bookAuthor = dict["author"] else {
return nil
}
I hope this helped a bit... Happy coding!
/ Jens
ALEKSANDR KONAKOV
Courses Plus Student 2,555 PointsALEKSANDR KONAKOV
Courses Plus Student 2,555 Pointsok. it should be dict instead of arr - I know :)