Question

How can i sort (or retrieve sorted array of ) an iphone contact book by first name & last name programmatically ??

Any help will be well appreciated...! Thanks

Was it helpful?

Solution

Call ABAddressBookCopyArrayOfAllPeople() to get an array of all person records in the address book. Then follow the documentation:

To sort an array of people, use the function CFArraySortValues with the function ABPersonComparePeopleByName as the comparator and a context of the type ABPersonSortOrdering. The user’s desired sort order, as returned by ABPersonGetSortOrdering, is generally the preferred context.

The following code listing shows an example of sorting the entire Address Book database:

ABAddressBookRef addressBook = ABAddressBookCreate();
CFArrayRef people = ABAddressBookCopyArrayOfAllPeople(addressBook);
CFMutableArrayRef peopleMutable = CFArrayCreateMutableCopy(
                                          kCFAllocatorDefault,
                                          CFArrayGetCount(people),
                                          people
                                  );

 CFArraySortValues(
        peopleMutable,
        CFRangeMake(0, CFArrayGetCount(peopleMutable)),
        (CFComparatorFunction) ABPersonComparePeopleByName,
        (void*) ABPersonGetSortOrdering()
); 

CFRelease(addressBook);
CFRelease(people);
CFRelease(peopleMutable);

OTHER TIPS

How about this:--

ABAddressBookCopyArrayOfAllPeopleInSourceWithSortOrdering

declared in ABPerson.h

I am using the above code (from the approved answer) to copy address book from iPhone, and also used ABPersonComparePeopleByName for sorting the address book.  But found that it
 will have different sorting results for the same address book, when the
 international language of the iPhone is different.  Suppose it is reasonable to sort different languages based on different criteria. So in our project we have "en.lproj".."zh-hant.lproj"..."ja.lproj", In NSCalendar, we also have "locale" setting. So I am thinking how to set the criteria for ABPersonComparePeopleByName and asked Apple. A very helpful reply: "a sort order is not predictable".

The relevant portion of Apple's reply is below:

This is actually normal behavior. Sorting in different languages is actually an incredibly complex issue where the expectation of the user vary widely depending on language/location. Honestly, your best option is to adjust your expectations and assume that the sort order is not predictable. Any other approach is very likely to annoy and confuse many international users.

-Kevin

Kevin Elliott, DTS Engineer, kevin_elliott@apple,com

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top