ABRecordCopyValue(thisPerson, kABPersonAddressProperty);
thisPerson is ABRecordRef
Thanks
Just do:
NSLog(@"%@",[ABRecordCopyValue(thisPerson, kABPersonAddressProperty) class]);
And that should tell you what class is being returned.
According to the documentation, the return type is CFTypeRef
CFTypeRef
The iOS documentation says: CFTypeRef - or do I get you wrong?
Regards Chris
Just do:
And that should tell you what class is being returned.