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 want to monitor the external changes of AddressBook, then I register a callback via ABAddressBookRegisterExternalChangeCallback, but this callback is invoked when I changes the addressBook internally (i.e. inside my App).

I don't want this. The reason is that When I add a new contact and save, I am going to do some animation in my tableView, but the callback would be invoked right after I save the addressBook, then the whole tableView shall be reloaded (tableView reloadData), the tableview reload breaks my animation.

Maybe you will ask, why not save the addressBook after your animation is completed. I did try, but when I modify the addressBook very fast, the animation will be broken by the previous "save-->callback-->tableReload" as well.

Is there any way to tell if the callback is invoked for external or internal changes?

Thanks.....

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.