I am trying to get the email count of a contact from addressbook. This is what I tried.
ABMultiValueRef email = ABRecordCopyValue(person, kABPersonEmailProperty);
NSArray* emails = (NSArray*)ABMultiValueCopyArrayOfAllValues(email);
if([emails count] < 1){
//things to do
}
But I am not getting the count right(count is always nil). What am I doing wrong here? Whats the right way to do this?
ABRecordRefperson. – tilo Feb 13 '12 at 16:37