i'm fetching contacts from iphone with complete contact detail i have recieved address and address label store with it but i want id of that address.
for postalAddress in contact.postalAddresses {
let title: String = CNLabeledValue<NSString>.localizedString(forLabel: postalAddress.label ?? "Location")
addresses.append(ContactInfo.Address(street: postalAddress.value.street, city: postalAddress.value.city, country: postalAddress.value.country, postalCode: postalAddress.value.postalCode, state: postalAddress.value.state, title: title, latitude: 0.0, longitude: 0.0))
}