我正在尝试使用新的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 Class Reference和fetching method's documentation都没有给出任何线索。
谢谢!
最佳答案
我在WWDC第223次会议(从第74张幻灯片开始)中发现了这一点,当我遇到同样的问题时,这对我很有效。使用cncontactFormatter.DescriptorForRequiredKeyforStyle…在联系人选择呼叫中。例子:
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))
}
关于formatting - CNContactFormatter需要哪些 key ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33384044/