"How to Make a Video Game" was retired on August 1, 2018.

Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Filtering an array of dictionaries in swift

I built a custom class for menu items, it contains various item descriptors like item name, category, price, etc. and puts them into a dictionary. I add these dictionaries to an array to fill out a UITableView. I would like to filter this array on the category field so the menu items are grouped into sections. Should I use an NSPredicate or is there a better way.