ABRecordCopyValue(thisPerson, kABPersonAddressProperty);
thisPerson is ABRecordRef
Thanks
Just do:
NSLog(@"%@",[ABRecordCopyValue(thisPerson, kABPersonAddressProperty) class]);
And that should tell you what class is being returned.