Aishwarya
Aishwarya

Reputation: 1607

Notification after an address book contact gets updated/modified in iOS

Is there is any notification passed after an update or change in a contacts Address Book information in iOS?

Upvotes: 4

Views: 3007

Answers (1)

kennytm
kennytm

Reputation: 523724

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.

Upvotes: 6

Related Questions