So rufen Sie alle CNContactStore vom Gerät ohne Filter ab

Ich versuche in @ einzufügvar contacts: [CNContact] = [] dasvar store = CNContactStore() aber ich habe nicht den richtigen Code für diesen Job gefunden, ich habe diese Funktion gefunden, die ich brauche, um dem einen Namen zu geben

func findContactsWithName(name: String) {
    AppDelegate.sharedDelegate().checkAccessStatus({ (accessGranted) -> Void in
        if accessGranted {
            dispatch_async(dispatch_get_main_queue(), { () -> Void in
                do {
                    let predicate: NSPredicate = CNContact.predicateForContactsMatchingName(name)
                    let keysToFetch = [CNContactGivenNameKey, CNContactFamilyNameKey, CNContactBirthdayKey, CNContactViewController.descriptorForRequiredKeys()]
                    self.contacts = try self.store.unifiedContactsMatchingPredicate(predicate, keysToFetch:keysToFetch)


                    self.tableView.reloadData()
                }
                catch {
                    print("Unable to refetch the selected contact.")
                }
            })
        }
    })
}

Ich möchte @ einfügself.contacts Alle Datensätze und nicht nur einer mit gleichem Namen

Antworten auf die Frage(4)

Ihre Antwort auf die Frage