Swift version: 5.6
If you have an array of items and want to group them according to some criteria, Swift has a special dictionary initializer just for you.
Here’s an example sequence we can work with:
let singers = ["Ed Sheeran", "Ariana Grande", "Taylor Swift", "Adele Adkins"]
We can now create a dictionary that groups those singers together by the length of their names:
let groupedByLength = Dictionary(grouping: singers) { $0.count }
That will put Taylor and Adele into an array under the “12” key, Ariana under 13, and Ed under 10.
Alternatively, we could group them by the first letters of each of their names:
let groupedByFirst = Dictionary(grouping: singers) { $0.first! }
SAVE 50% To celebrate WWDC23, 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.
Available from iOS 8.0 – learn more in my book Pro Swift
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.