ABPeoplePickerNavigationController - get an address from the ABRecordRef
Once I get an ABRecordRef from the ABPeopleNavigationController, how can I get the contact's street a开发者_运维技巧ddress(s) (if there is one)?
Try
NSString* street = ABRecordCopyValue (record, kABPersonAddressStreetKey);
For more information on property types see ABPerson reference.
精彩评论