如何添加“自定义标签”以编程方式到iOS AddressBook?

问题描述:

在iOS地址簿中手动添加联系人的电话/ IMS时,您可以添加自定义标签而不是主页,工作,其他*(在IMS中)。

When manually adding a contact's phone / IMS in the iOS AddressBook, you can add a Custom Label instead of "Home", "Work", "Other" * (in IMS).

如何以编程方式在AddressBook中创建自定义标签?

How to create "Custom Label" in AddressBook programmatically?

我有完全相同的问题。我找不到答案所以我只是尝试了猜测和检查方法。以下代码似乎有效:

I had this exact same question. I couldn't find an answer so I just tried the guess and check method. The following code seems to work:

CFErrorRef error = NULL; 
ABAddressBookRef iPhoneAddressBook = ABAddressBookCreate();
ABRecordRef newPerson = ABPersonCreate();
ABRecordSetValue(newPerson, kABPersonFirstNameProperty, @"Jane", &error);
ABRecordSetValue(newPerson, kABPersonLastNameProperty, @"Smith", &error);

const CFStringRef customLabel = CFSTR( "mylabel" );

//phone
ABMutableMultiValueRef multiPhone = ABMultiValueCreateMutable(kABMultiStringPropertyType);
ABMultiValueAddValueAndLabel(multiPhone, @"1-444-444-444", kABPersonPhoneMainLabel, NULL);
ABMultiValueAddValueAndLabel(multiPhone, @"1-333-333-333", kABPersonPhoneMobileLabel, NULL);            
ABMultiValueAddValueAndLabel(multiPhone, @"1-666-666-666", kABOtherLabel, NULL);        
ABMultiValueAddValueAndLabel(multiPhone, @"1-555-555-555", customLabel, NULL); 
ABRecordSetValue(newPerson, kABPersonPhoneProperty, multiPhone,nil);
CFRelease(multiPhone);

ABAddressBookAddRecord(iPhoneAddressBook, newPerson, &error);
ABAddressBookSave(iPhoneAddressBook, &error);

if (error != NULL)
{   
    NSLog(@"Error!");   
}

如果您查看地址簿,您会看到一个带有自定义的电话号码label:mylabel

If you check the address book, you will see a phone number with a custom label: mylabel

感谢:这篇文章

并且:此博客