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 Swift Basics (retired) Collections What is a Dictionary?

How do you put the value from "UK": "Pound" into a constant named ukCurrency using the removeValueForKey command?

I am on the second objective of what is a dictionary.

dictionaries.swift
//We wil be creating a dicitonary with various country names and there
//country codes 
let currencies = ["US": "Dollar", "UK": "Pound", "JP": "Yen"] 
let ukCurrency = currencies.removeValueForKey("UK")

2 Answers

Hi Raphael,

Your question seems unrelated to the challenge you've linked it to. If your issue is that you can't get beyond the challenge, then the question is not asking you to remove the element. The question is Assign the value for key "UK" to a constant named ukCurrency; so that just looks like:

let currencies = ["US" : "Dollar", "UK" : "Pound", "JP" : "Yen"]
let ukCurrency = currencies["UK"]

Steve.

I understand now, your help is greatly appreciated.

Hey, not a problem! :-)

Steve.

It did work, but why doesn't the removeValueForKey command work?

Caleb Kleveter
Caleb Kleveter
Treehouse Moderator 37,862 Points

Because it's a constant verses a variable you can't change it's content after it's been created.