I’m getting all the contacts from the addressbook into my application, i just need to get email address from the selected contact, here’s my code
shouldContinueAfterSelectingPerson
- (BOOL)peoplePickerNavigationController:
(ABPeoplePickerNavigationController *)peoplePicker
shouldContinueAfterSelectingPerson:(ABRecordRef)person {
// Select phone number
ABMultiValueRef emailProperty = ABRecordCopyValue(person, kABPersonEmailProperty);
NSString *email = (__bridge NSString *)(emailProperty);
[self dismissModalViewControllerAnimated:YES];
self.view.frame = CGRectMake(0, 44, 320, 370);
return NO;
}
Please help me out of this guys, Thanks in advance
Am printing it in the log given below
email string is ABMultiValueRef 0x1eb2ddb0 with 0 value(s)
1 Answer