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! }
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
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.