I've got some data stored in Core Data that looks something like:
| name | identifier | other_stuff |
I need to display the names in a UITableView, but I only want to display the names with unique name-identifier pairs. So for:
John | 3 | foo
Betty | 4 | foo
Betty | 4 | bar
I only want the query to return John, Betty. Something like "select unique name, identifier from table."
Any way to do this with NSPredicate, or do I need to pour the de-duped fields into a different container, then search on that?