I have data stored in Core Data that looks something like this:
| name | identifier | other_stuff |
I need to display names in a UITableView, but I only want to display names with unique pairs of name identifiers. So for:
John | 3 | foo Betty | 4 | foo Betty | 4 | bar
I want the request to return to John, Betty. Something like "select a unique name, identifier from the table."
Any way to do this using NSPredicate, or do I need to pour deactivated fields into another container and then search on it?
iphone cocoa-touch cocoa core-data nspredicate
James moore
source share