Swift version: 5.2
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 Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
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.