Question

II trying to change the value of ABPerson / ABMultiValue (the phone numbers).

Anyway to update these?

ABAddressBook *ab = [ABAddressBook sharedAddressBook];  
NSArray *persons = [ab people];

int j=[persons count];

for (int i=0; i<j; i++) {
    ABPerson *person = [persons objectAtIndex:i];               
    ABMultiValue *phonenumbers = [person valueForProperty:kABPhoneProperty];
    //  update here *phonenumbers
}

Thanks!

Was it helpful?

Solution

Try calling:

ABMultiValueRef phoneNumbers = ABMultiValueCreateMutable(kABPersonPhoneProperty);
ABMultiValueAddValueAndLabel(phoneNumbers, value, label, null);
ABRecordSetValue(person, kABPersonPhoneProperty, phoneNumbers, NULL);

Add one of these: ABMultiValueAddValueAndLabel(phoneNumbers, value, label, null) for every value you want to add.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top