I'm trying to get the Country from a ABPerson object in Cocoa.
What I do is:
NSString *country = [person valueForProperty:kABAddressCountryKey];
I get this in the console:
-[ABPerson valueForProperty:Country] - unknown property. This warning will be displayed only once per unknown property, per session.
Getting the persons' organizationName(kABOrganizationProperty
), firstName (kABFirstNameProperty
) and lastName (kABLastNameProperty
) works.
Any ideas?