I need to fetch record from address book. I'm using ABPeoplePickerNavigationController to do so. While fetching record I'm putting a check condition to check record exist or not. For example to check there is first name I'm using the following code
NSString *fname;
CFTypeRef fnameProperty = ABRecordCopyValue(person, kABPersonFirstNameProperty);
if (ABRecordCopyValue(person, kABPersonFirstNameProperty)) {
fname = (__bridge NSString*)fnameProperty;
}
else{
fname = @"";
}
The code works perfectly for kABPersonFirstNameProperty.
But when I'm using following piece of code to check email property
ABMultiValueRef emailProperty = ABRecordCopyValue(person, kABPersonEmailProperty);
NSLog(@"%@",emailProperty);
NSString *email;
if (ABRecordCopyValue(person, kABPersonEmailProperty)) {
email = (__bridge NSString*)ABMultiValueCopyValueAtIndex(emailProperty, 0);
}
else {
email = @"";
}
My app crashes if kABPersonEmailProperty is nil(there is no email property stored for the person)
Can somebody explain me why is this happening?
Thanks