The firstname, lastname and email address work great! as soon as I get to address, im crashing.
NSString *firstName = (NSString *)ABRecordCopyValue(thisPerson, kABPersonFirstNameProperty);
NSString *lastName = (NSString *)ABRecordCopyValue(thisPerson, kABPersonLastNameProperty);
NSString *emailAddress = (NSString *)ABRecordCopyValue(thisPerson, kABPersonEmailProperty);
NSString *address = (NSString *)ABRecordCopyValue(thisPerson, kABPersonAddressStreetKey);
NSString *city = (NSString *)ABRecordCopyValue(thisPerson, kABPersonAddressCityKey);
NSString *state = (NSString *)ABRecordCopyValue(thisPerson, kABPersonAddressStreetKey);
NSString *zip = (NSString *)ABRecordCopyValue(thisPerson, kABPersonAddressZIPKey);