There is??
OMG, I forgot to mention I'm on iPhone.
On Apr 6, 2010, at 3:00 PM, Jens Alfke wrote:
>
> On Apr 6, 2010, at 11:48 AM, Development wrote:
>
>> ABMutableMultiValueRef multiValue = ABRecordCopyValue(person,
>> kABPersonAddressProperty);
>> **Crashes here*** CFDictionaryRef
On Apr 6, 2010, at 11:48 AM, Development wrote:
ABMutableMultiValueRef multiValue = ABRecordCopyValue(person,
kABPersonAddressProperty);
**Crashes here*** CFDictionaryRef dict =
ABMultiValueCopyValueAtIndex(multiValue, 0);
Did you check whether 'multiValue' is NULL? CF-based APIs don't l
I am using the following:
[settings setObject:(NSString *)ABRecordCopyValue(person,
kABPersonFirstNameProperty) forKey:@"First Name"];
[settings setObject:(NSString *)ABRecordCopyValue(person,
kABPersonLastNameProperty) forKey:@"Last Name"];
//
AB