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 Enumerations and Optionals in Swift Introduction to Optionals Initializing Optional Values

Trevor Justice
Trevor Justice
1,965 Points

In the editor, you have a struct named Book which has few stored properties, two of which are optional...

I am having lots of problems with this challenge. I have been looking at similar questions and answers but cannot seem to find what the problem is with my code. When I try to run this in swift, the error says that "Array types are now written with the brackets around the element type...Fix It Replace "dict[" with "[dict" ". I do not understand why this is, but regardless if I let the fix happen then it pulls another error which says "Variable binding in a condition requires an initializer". Any help and explanation as to why this happens would be appreciated.

optionals.swift
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"]

        }
}

1 Answer

Jorge Solana
Jorge Solana
6,064 Points

Hey Trevor

You almost got it! There's just a little mistake in the guard let statement: you need to assign the value to that constant, and we do so with the equal (=) parameter, not the dots (:).

guard let title = dict["title"], let author = dict["author"] else {

Hope it helps!

I have exactly the same problem! Jorge, thanks A LOT !!!!