Try this code:
ABAddressBookRef myAddressBook = ABAddressBookCreate(); NSArray *allPeople = (NSArray *)ABAddressBookCopyArrayOfAllPeople(myAddressBook); for (id record in allPeople) { NSMutableDictionary *newRecord = [[NSMutableDictionary alloc] init]; CFTypeRef bDayProperty = ABRecordCopyValue((ABRecordRef)record, kABPersonBirthdayProperty); if (ABRecordCopyValue((ABRecordRef)record, kABPersonBirthdayProperty)) { NSDate *date=(NSDate*)bDayProperty; [newRecord setObject:date forKey:@"birthDate"]; date=nil; [date release]; } CFRelease(myAddressBook); }
it will help you.
source share