
What is a Dictionary?
The Dictionary is an unordered List that can be quickly accessed by key
Here is how you can declare an Empty Dictionary
var emptyDictionary = [String : Int]()
Dictionary with Predefined Key Pairs
var apps = ["Productivity" : "Keynote", "Social" : "Facebook", "Music" : "iTunes"]
Accessing the First Key Element of the Dictionary
var optionalApp = apps["Productivity"] // Keynote