Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When implementing a view similar to an ABPeoplePickerNavigationController, I'm not able to sort the list very quickly. The native contacts app loads the list instantly. I'm dealing with 4000+ contacts, so keeping load times down is important. I can't use the ABPeoplePickerNavigationController because I need to do a lot of custom UI work.

I was using ABAddressBookCopyArrayOfAllPeople, then placing the people in UILocalizedIndexedCollation sections using sectionForObject and then sorting the sections using sortedArrayFromArray. For 4000 contacts, my time was about 8 seconds.

I then switched to using ABAddressBookCopyArrayOfAllSources and for every source, ABAddressBookCopyArrayOfAllPeopleInSourceWithSortOrdering and just appending each source's contacts to the unsorted array, then using the same UILocalizedIndexedCollation technique. This dropped the time down to about 5 seconds, I guess since the sections were mostly sorted already.

Is there any way to improve on this? Any techniques I'm not aware of? Can I somehow load an ABPeoplePickerNavigationController data source without the view and use that? Or is there a faster sorting method?

Thanks very much.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.