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 Build a Vending Machine App in Swift Using the Vending Machine Modeling the Vending Machine

Huseyn Guliyev
Huseyn Guliyev
2,603 Points

Error in vend function

Cannot subscript a value of type '[VendingSelection : VendingItem]' with an argument of type '[VendingSelection]'

Here is my code:

class FoodVendingMachine: VendingMachine {

let selection: [VendingSelection] = [.soda, .dietSoda, .chips, .cookie, .sandwich, .wrap, .candyBar, .popTart, .water, .fruitJuice, .sportsDrink, .gum]

var inventory: [VendingSelection : VendingItem] 

var amountDeposited: Double = 10.0

required init(inventory: [VendingSelection : VendingItem]) {
    self.inventory = inventory
}

func vend( _ quantity: Int, _ slection: VendingSelection) throws {
    guard var item = inventory[selection] else {
        throw VendingMachineError.invalidSelection
    }
}

func deposit(_ amount: Double) {
}

}

1 Answer

Johnny Nguyen
Johnny Nguyen
3,875 Points

Look at your function vend():

Do you name your local argument correctly? It should be "selection" instead of "slection".

Huseyn Guliyev
Huseyn Guliyev
2,603 Points

I already found my mistake but thanks anyways!