How to get notified in contact changed event in IOS?

Mayur Kataria

I wants to get notified when there is insert/update event to contacts of iPhone.

Is it possible to get notification to my app regarding specific contact changed event happened ?

Just a newbie... for IOS Swift.

I am not expecting full source code. Just wants to know whether its possible or not and also hint.

Thanks in advance.

Sanjay Mohnani

In iOS it could be done using -

Register the external change call back notifier-

ABAddressBookRef ntificationaddressbook = ABAddressBookCreate();
    ABAddressBookRegisterExternalChangeCallback(ntificationaddressbook, MyAddressBookExternalChangeCallback, self);

Implement the call back -

void MyAddressBookExternalChangeCallback (ABAddressBookRef ntificationaddressbook,CFDictionaryRef info,void *context)
{
    // called when there is any change in AddressBook
}

For more details you can refer this link-

Detect what was changed from ABAddressBookRegisterExternalChangeCallback

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get notified when grid changed in AngularJS ui-grid?

From Dev

How to get notified when MKMapKit zoom level changed?

From Dev

2 Activities get notified on GPS Status Changed

From Dev

how to get a terminal size changed event?

From Dev

how to get event when column changed it position?

From Dev

Get notified when location of opened popup window changed

From Dev

Get notified when location of opened popup window changed

From Dev

iOS System message (e.g. hotspot) on top blocking my app - how to get notified?

From Dev

iOS - In App Purchase - auto renew subscription - How to get notified if the user cancel or auto renewable subscription?

From Dev

How to get old text and changed text of textbox on TextChanged event of textbox?

From Dev

How to get old entity value in @HandleBeforeSave event to determine if a property is changed or not?

From Dev

How to get UI Bootstrap Tabs to send an event when tab is changed

From Dev

Oracle Database Changed Event - get Changed Row

From Dev

How to contact Canonical to sponsor an Event

From Dev

Get iOS contact image with ABPersonCopyImageData

From Dev

Get iOS contact image with ABPersonCopyImageData

From Dev

Prism get notified when a published event has been handled

From Dev

EditText event handler to get notified that a key has been pressed

From Dev

How to get notified the latest recv in socket(python)

From Dev

How to get notified before static variables are finalized

From Dev

How to get notified when NSWindow opens?

From Dev

How to monitor network type and get notified if it changes

From Dev

How to get notified when the application is closed in Android

From Dev

How to get notified before static variables are finalized

From Dev

How to get notified of updates on the Android filesystem?

From Dev

How to get notified when NSWindow opens?

From Dev

How to get notified when application goes background?

From Dev

How to monitor network type and get notified if it changes

From Dev

How to get notified by email when logrotate crashes?

Related Related

  1. 1

    How to get notified when grid changed in AngularJS ui-grid?

  2. 2

    How to get notified when MKMapKit zoom level changed?

  3. 3

    2 Activities get notified on GPS Status Changed

  4. 4

    how to get a terminal size changed event?

  5. 5

    how to get event when column changed it position?

  6. 6

    Get notified when location of opened popup window changed

  7. 7

    Get notified when location of opened popup window changed

  8. 8

    iOS System message (e.g. hotspot) on top blocking my app - how to get notified?

  9. 9

    iOS - In App Purchase - auto renew subscription - How to get notified if the user cancel or auto renewable subscription?

  10. 10

    How to get old text and changed text of textbox on TextChanged event of textbox?

  11. 11

    How to get old entity value in @HandleBeforeSave event to determine if a property is changed or not?

  12. 12

    How to get UI Bootstrap Tabs to send an event when tab is changed

  13. 13

    Oracle Database Changed Event - get Changed Row

  14. 14

    How to contact Canonical to sponsor an Event

  15. 15

    Get iOS contact image with ABPersonCopyImageData

  16. 16

    Get iOS contact image with ABPersonCopyImageData

  17. 17

    Prism get notified when a published event has been handled

  18. 18

    EditText event handler to get notified that a key has been pressed

  19. 19

    How to get notified the latest recv in socket(python)

  20. 20

    How to get notified before static variables are finalized

  21. 21

    How to get notified when NSWindow opens?

  22. 22

    How to monitor network type and get notified if it changes

  23. 23

    How to get notified when the application is closed in Android

  24. 24

    How to get notified before static variables are finalized

  25. 25

    How to get notified of updates on the Android filesystem?

  26. 26

    How to get notified when NSWindow opens?

  27. 27

    How to get notified when application goes background?

  28. 28

    How to monitor network type and get notified if it changes

  29. 29

    How to get notified by email when logrotate crashes?

HotTag

Archive