Minakshi
Minakshi

Reputation: 1433

Can we update record of addressbook?

I want to update record of addressbook. I searched for it but I have not got any particular solution for this. I am able to access addressbook but after changing phone number or any field I want to update it. Please give some code example......

Upvotes: 0

Views: 326

Answers (1)

Lokus001
Lokus001

Reputation: 159

You can edit a record using this function :

bool ABRecordSetValue (
   ABRecordRef record,
   ABPropertyID property,
   CFTypeRef value,
   CFErrorRef *error
);

For more information, visit this link : ABRecord Reference

Upvotes: 2

Related Questions