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.

I've created an address book copy with

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

now i would have just people with an address set in.

I've tried filtering with NSPredicate, but I don't know how to use the predicateWithFormat correctly with address book constants. This doesn't work:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(%@ like %@)", kABPersonFirstNameProperty, aVariable];

Can someone suggest me something? Thanks

share|improve this question

1 Answer

Take a look at http://github.com/erica/ABContactHelper -- if it doesn't have code that does what you want already, it should be a useful guide for writing it yourself.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.