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 Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
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.