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'm trying to know which record update in AddressBook to modify it in my app. Because if user have many contacts that will let the app get slower so I need to know how to get the specific one that update?

  ABAddressBookRef book = ABAddressBookCreate();
    ABAddressBookRegisterExternalChangeCallback(book, addressBookChanged, (__bridge void *)(self));

  void addressBookChanged(ABAddressBookRef reference,
                            CFDictionaryRef dictionary,
                            void *context){}
share|improve this question
I suggest reading the official documentation: developer.apple.com/library/ios/ipad/#documentation/ContactData/… – Lefteris Dec 27 '12 at 2:25
1  
read it found nothing :( – Omarj Dec 27 '12 at 8:25

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.