tags:

views:

103

answers:

1

is there is any notification after update or changes in contact Address Book in iphone

+2  A: 

Use ABAddressBookRegisterExternalChangeCallback to listen to updates in the Address Book.


You may also listen to the @"ABCDataBaseChangedExternallyNotification" notification, or even deeper, the "__ABDataBaseChangedByOtherProcessNotification" Darwin notification, but these are all undocumented. Don't rely on them. ABAddressBookRegisterExternalChangeCallback is perfectly fine.

KennyTM