Loading Apple Pay Shipping Address No Street
问题 I'm trying to get a shipping address extracted from the ABRecordRef provided by Apple. I have the following but my street is always returning as nil : ABMultiValueRef addresses = ABRecordCopyValue(abRecordRef, kABPersonAddressProperty); for (CFIndex index = 0; index < ABMultiValueGetCount(addresses); index++) { CFDictionaryRef properties = ABMultiValueCopyValueAtIndex(addresses, index); NSString *street = [(__bridge NSString *)(CFDictionaryGetValue(properties, kABPersonAddressStreetKey)) copy