I have an entity Contact which has duplicate contact object. Eg :
|---------------------|------------------|---------------|
| Name | Index Value | Number |
|---------------------|------------------|---------------|
| Daniel Higgins | 4 | 12345 |
|---------------------|------------------|---------------|
| Daniel Higgins | 4 | 123456789 |
Now here i am fetching the contact using NSFetchedResultsController and using it for UITableviewController.
Here i want to show only one entry for name Daniel Higgins. How can i filter out the unique objects from NSFetchedResultsController based on idexvalue.