I was manually adding an email id to an ABRecordRef which returns me an exception.Check out the code
ABRecordRef person=ABPersonCreate();
NSString *email=@"[email protected]";
ABRecordSetValue(person,kABPersonEmailProperty,(__bridge CFTypeRef)email,NULL);
CFRelease(person);
Try this.....