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 attempting to count the total number of Birthday entries throughout the Address Book.

Problem line

/*  This line crashes only when using kABPersonBirthdayProperty  */
ABMultiValueRef lBirthdays = ABRecordCopyValue(lRef, kABPersonBirthdayProperty);

/*  Note that when this line is changed to another `ABPropertyID`, it works fine.
    Only seems to crash on NSCFDates.
 */

There is more code to iterate through all of the Contact throughout the entire Address Book, but is irrelevant to this Question.

int totalBirthdayEntries = 0;

CFIndex lContactBirthdayCount = ABMultiValueGetCount( lBirthdays );

for (int births = 0; births < lContactBirthdayCount; births++)
{
    totalBirthdayEntries++;
} 

NSLog(@"Total Birthdays in Address Book: %i",totalBirthdayEntries);
share|improve this question
Any luck with this problem? – jtbandes Aug 24 '11 at 2:46

1 Answer

I believe kABPersonBirthdayProperty will give you a CFDate/NSDate, not an ABMultiValueRef. Try this:

CFDateRef date = ABRecordCopyValue(lRef, kABPersonBirthdayProperty);
share|improve this answer
no luck, still crashes. – WrightsCS Aug 24 '11 at 4:02
1  
@WrightsCS Can you show more of your code and more info about the crash? – jtbandes Aug 24 '11 at 4:03

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.