Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Your code looks fine - perhaps something is wrong with your ABRecordRef person. – tilo Feb 13 '12 at 16:37

2 Answers

up vote 0 down vote accepted

Have you checked if email is null?

Anyway, this should work:

ABMultiValueRef email = ABRecordCopyValue(person, kABPersonEmailProperty);
int size = ABMultiValueGetCount(email);
share|improve this answer

The code I have given was right. The problem was someone who gave their email address in the url label which was misleading me all this time, and I could find it only when I tried to edit the addressbook. Apologies for the stupid question. Thank you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.