gpt4 book ai didi

iphone - 如何以编程方式将 "Custom Label"添加到 iOS 地址簿?

转载 作者:行者123 更新时间:2023-12-03 18:42:35 26 4
gpt4 key购买 nike

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

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

最佳答案

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

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!");
}

如果您检查地址簿,您将看到带有自定义标签的电话号码:mylabel

感谢:this post

致:this blog

关于iphone - 如何以编程方式将 "Custom Label"添加到 iOS 地址簿?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2675783/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com