Reputation: 1433
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
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