gpt4 book ai didi

ios - Swift iOS9 新联系人框架 - 如何仅检索具有有效电子邮件地址的 CNContact?

转载 作者:IT王子 更新时间:2023-10-29 05:40:49 24 4
gpt4 key购买 nike

在最新的 iOS9 Contacts 框架中,如何只检索具有有效电子邮件地址的 CNContact?

当前代码:

func getContacts() -> [CNContact] {
let contactStore = CNContactStore()
let predicate: NSPredicate = NSPredicate(format: "")
let keysToFetch = [CNContactGivenNameKey, CNContactFamilyNameKey, CNContactEmailAddressesKey]

do {
return try contactStore.unifiedContactsMatchingPredicate(predicate, keysToFetch: keysToFetch)
} catch {
return []
}
}

最佳答案

目前 (iOS 9.0) 似乎没有谓词 ( see CNContact Predicates ) 可用于按电子邮件地址过滤联系人!

您不能编写自定义谓词来过滤联系人,如文档所述: “请注意,联系人框架不支持通用谓词和复合谓词”

但是你当然可以“手动”完成,我给你看一个使用快速枚举的例子:

let contactStore = CNContactStore()
fetchRequest.unifyResults = true //True should be the default option
do {
try contactStore.enumerateContactsWithFetchRequest(CNContactFetchRequest(keysToFetch: [CNContactGivenNameKey, CNContactFamilyNameKey, CNContactEmailAddressesKey])) {
(contact, cursor) -> Void in
if (!contact.emailAddresses.isEmpty){
//Add to your array
}
}
}
catch{
print("Handle the error please")
}

注意:

在较新版本的 Swift 中,对 contactStore.enumerateContactsWithFetchRequest 的调用需要更新为:

try contactStore.enumerateContacts(with: CNContactFetchRequest(keysToFetch: [CNContactGivenNameKey, CNContactFamilyNameKey, CNContactEmailAddressesKey] as [CNKeyDescriptor])) {

关于ios - Swift iOS9 新联系人框架 - 如何仅检索具有有效电子邮件地址的 CNContact?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32665605/

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