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.....