I'm new to Swift and is trying to learn the concept of subscript. When I tried to find out the returned value of testScores["dave"], I was expecting Array<Int>.Type
, however, the IDE instead outputted Optional<Array<Int>>.Type
.
Why this is the case? Am I missing something?
var testScores = ["dave": [82, 84, 86], "jen": [23, 14, 5], "ben": []]
testScores["dave"].dynamicType
Anytime you get a value from a
Dictionary
it will be optional. It might or might not have an entry for the specified key. That is why you have to unwrap the optional before you can use it.