abmultivalue

Monotoch GetPhones ABMultiValue Inconsistent

I am using the following code to get phones numbers from the address book. ABAddressBook mybook = new ABAddressBook(); ABPerson[] allPeople = mybook.GetPeople(); foreach(ABPerson thisPerson in allPeople){ if(thisPerson.GetPhones() != null) ABMultiValue<string> myMultiPhone = thisPerson.GetPhones(); } } Wra...

Test ABMutableMultiValue Reference for Non-Existent property

Programmatically, any help on how one can test for a non-existent multivalue record property in Xcode? That is, not every person record has an email or phone in the address book. Three cases exist: (1) The person record has both at least one email and one phone, (2) The person record may have only a phone, and (3) The person record may...