如何(轻松)使用vCard更新ABPerson对象并保留其唯一ID?

时间:2012-07-13 14:33:00

标签: objective-c macos abaddressbook abperson

使用initWithVCardRepresentation:方法,AddressBook Framework提供了一种使用vCard初始化ABPerson的好方法。

我想要做的是更新与某个vCard的联系人。我不能使用initWithVCardRepresentation:,因为这会给我一个带有新uniqueId的新ABPerson对象,我想在这些更改之间保留uniqueId。

做这样的事情有什么简单的方法?

谢谢!

1 个答案:

答案 0 :(得分:3)

initWithVCardRepresentation仍然是将您的电子名片变成ABPerson的最简单方法。

只需使用它的结果在地址簿中找到匹配的人,然后迭代vCard属性,将它们放入现有记录中。最后的保存将加强您的更改。

以下示例假定唯一的“密钥”为last-namefirst-name。如果要包含没有列出名称的公司或其他任何公司,您可以修改搜索元素,或者您可以通过获取[AddressBook人员]来更改迭代方案,然后迭代人员并仅使用键值的那些记录配对满足您的需求。

- (void)initOrUpdateVCardData:(NSData*)newVCardData {
    ABPerson* newVCard = [[ABPerson alloc] initWithVCardRepresentation:newVCardData];
    ABSearchEleemnt* lastNameSearchElement
      = [ABPerson searchElementForProperty:kABLastNameProperty
                                     label:nil
                                       key:nil
                                     value:[newVCard valueForProperty:kABLastNameProperty]
                                comparison:kABEqualCaseInsensitive];
    ABSearchEleemnt* firstNameSearchElement
      = [ABPerson searchElementForProperty:kABFirstNameProperty
                                     label:nil
                                       key:nil
                                     value:[newVCard valueForProperty:kABFirstNameProperty]
                                comparison:kABEqualCaseInsensitive];
    NSArray* searchElements
      = [NSArray arrayWithObjects:lastNameSearchElement, firstNameSearchElement, nil];
    ABSearchElement* searchCriteria
      = [ABSearchElement searchElementForConjunction:kABSearchAnd children:searchElements];
    AddressBook* myAddressBook = [AddressBook sharedAddressBook];
    NSArray* matchingPersons = [myAddressBook recordsMatchingSearchElement:searchCriteria];
    if (matchingPersons.count == 0)
    {
        [myAddressBook addRecord:newVCard];
    }
    else if (matchingPersons.count > 1)
    {
        // decide how to handle error yourself here: return, or resolve conflict, or whatever
    }
    else
    {
        ABRecord* existingPerson = matchingPersons.lastObject;
        for (NSString* property in [ABPerson properties])   // i.e. *all* potential properties
        {
            // if the property doesn't exist in the address book, value will be nil
            id value = [newVCard valueForProperty:property];
            if (value)
            {
                NSError* error;
                if (![existingPerson setValue:value forProperty:property error:&error] || error)
                    // handle error
            }
        }
        // newVCard with it's new unique-id will now be thrown away
    }
    [myAddressBook save];
}