CNContactFormatter 需要哪些键?

问题描述 投票:0回答:2

我正在尝试使用新的

CNContactFormatter
设置联系人姓名的格式。看起来,我没有获取联系人所有需要的名称属性。

Terminating app due to uncaught exception 'CNPropertyNotFetchedException', reason: 'A property was not requested when contact was fetched.'

有人知道需要哪些吗?我尝试在其他几个中获取以下内容,但没有成功:

        CNContactNamePrefixKey,
        CNContactGivenNameKey,
        CNContactFamilyNameKey,
        CNContactMiddleNameKey, 
        CNContactPreviousFamilyNameKey,
        CNContactNameSuffixKey,
        CNContactNicknameKey,
        CNContactPhoneticGivenNameKey,
        CNContactPhoneticMiddleNameKey,
        CNContactPhoneticFamilyNameKey,
        CNContactOrganizationNameKey,
        CNContactDepartmentNameKey,
        CNContactJobTitleKey,

CNContactFomatter 类参考获取方法的文档都没有提供任何线索。

谢谢!

formatting ios9 cncontact cncontactformatter cncontactstore
2个回答
23
投票

我在 WWDC Session 223(从幻灯片 74 开始)中发现了这一点,当我遇到同样的问题时,这对我很有用。 在联系人选择调用中使用 CNContactFormatter.descriptorForRequiredKeysForStyle...。 示例:

let contactStore = CNContactStore()
let predicate = CNContact.predicateForContactsMatchingName("John")
let foundContacts = try contactStore.unifiedContactsMatchingPredicate(predicate, keysToFetch: [CNContactFormatter.descriptorForRequiredKeysForStyle(.FullName)]
for contact in foundContacts {
            print(CNContactFormatter.stringFromContact(contact, style: .FullName))
}

2
投票
class func descriptorForRequiredKeys()

用于从联系人获取创建 vCard 数据所需的所有联系人密钥。

https://developer.apple.com/documentation/contacts/cncontactformatter/1397746-descriptorforrequiredkeys

示例:

let containerResults =  try contactStore.unifiedContacts(matching: fetchPredicate, keysToFetch:[CNContactVCardSerialization.descriptorForRequiredKeys()])
© www.soinside.com 2019 - 2024. All rights reserved.