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 trialAmir Gamil
5,657 PointsInitializer for conditional binding must have Optional type, not [String]
Below is my code
class InventroyUnarchiver{
class func vendingInventoryFromDictionary(dictionary: [String:AnyObject]) throws -> [VendingSelection : ItemType]{
var inventory: [VendingSelection : ItemType] = [:]
for (key, value) in dictionary{
if let itemDict = value as? [String : Double], let price = itemDict["price"], let quantity = ["quantity"]{
let item = VendingItem(price: price, quantity: quantity)
guard let key = VendingSelection(rawValue: key) else{
throw InventoryError.InvalidKey
}
inventory.updateValue(item, forKey: key)
}
}
return inventory
}
}
The compiler keeps giving me this error and I have tried everything to solve it. Can anyone help/explain?
2 Answers
Michael Drexler
4,374 PointsHey Amir Gamil,
this provided code is really hard to read without formatting it.
Can you take a closer look at the following line
let quantity = ["quantity"]
Did you miss the dictionary here?
itemDict["quantity"]
Regards Michael
Amir Gamil
5,657 PointsAhhhhh yeh now I see it. Thanks a million!
Michael Drexler
4,374 PointsYou are welcome! I am glad that I could help!