telefonicos sincronizar recuperar pasar otro mis los guardar google contactos como celular anterior abrir c# iphone xamarin.ios contacts

c# - sincronizar - contactos google



¿Cómo obtener los contactos programáticamente usando MonoTouch c#? (2)

¿Cómo obtener los contactos en iPhone? Necesito obtener todos los atributos de los contactos de iPhone. ¿Cómo lograr programáticamente usando MonoTouch?



ABAddressBook iPhoneAddressBook = new ABAddressBook(); ABPerson[] Contacts = iPhoneAddressBook.GetPeople(); foreach (ABPerson item in Contacts) { ABMultiValue<NSDictionary> Contact = item.GetPhones(); foreach (ABMultiValueEntry<NSDictionary> cont in Contact) { // cont.Label indicates the type ( home,work,etc) // get the contact via cont.Value } }