Swift version: 5.10
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! }
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until February 9th.
Sponsor Hacking with Swift and reach the world's largest Swift community!
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.