From this method :- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person
How I can get the full street address + city + country and zipcode…
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the Apple documentation:
ABRecordCopyValue
Returns the value of a record property.
Parameters
record
The record containing the property in question.
property
The property of record whose value is being returned. See properties in “Constants” in ABPerson Reference and “Constants” in ABGroup Reference.
Return Value
The value of property in record.
So you would just ask your ABRecord for the specific properties and you should be fine!