Reputation: 201
In my app I import a contact details using addressbookui.In case of email or mobile number empty my app getting crashed.
Upvotes: 0
Views: 417
Reputation: 3754
For email try this:
ABMutableMultiValueRef eMail = ABRecordCopyValue(ref, kABPersonEmailProperty);
if(ABMultiValueGetCount(eMail) > 0)
{
NSString *personEmail = (NSString *)ABMultiValueCopyValueAtIndex(eMail, 0);
}
Upvotes: 1