tags:

views:

108

answers:

1

Once I get an ABRecordRef from the ABPeopleNavigationController, how can I get the contact's street address(s) (if there is one)?

+2  A: 

Try

NSString* street = ABRecordCopyValue (record, kABPersonAddressStreetKey);

For more information on property types see ABPerson reference.

Vladimir