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
2010-05-16 21:19:47