Swift version: 5.6
A dictionary is a collection of values stored at named positions. Whereas you would access values in an array using myArray[5]
, with a dictionary you use named positions such as myDict["Paul"]
or myDict["Scotland"]
. You don't even need to use strings for the positions – you can use another object if you choose, such as dates.
These named positions are called "keys", so dictionaries represent what's known as a key-value pair: each key has exactly one value, and each can appear only once in a dictionary.
SAVE 50% To celebrate Black Friday, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 7.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.