Ejemplo n.º 1
0
        private void FetchContact(string name, Action <CNContact[]> completion)
        {
            var result = store.GetUnifiedContacts(CNContact.GetPredicateForContacts(name),
                                                  new ICNKeyDescriptor[] { CNContactViewController.DescriptorForRequiredKeys },
                                                  out NSError error);

            if (error != null)
            {
                Console.WriteLine($"Error: {error.LocalizedDescription}");
            }
            else
            {
                DispatchQueue.MainQueue.DispatchAsync(() => completion(result));
            }
        }