1

Reading the documentation, Apple points to ABPerson for the keys to use on CLPlacemark's addressDictionary.

But since iOS 9, ABPerson is deprecated.

Is there something else to use for the keys ?

Matthieu Riegler
  • 31,918
  • 20
  • 95
  • 134
  • Possible duplicate of ['kABPersonAddressStreetKey' was deprecated in iOS 9.0: use CNPostalAddress.street](https://stackoverflow.com/questions/31085299/kabpersonaddressstreetkey-was-deprecated-in-ios-9-0-use-cnpostaladdress-stree) – Tamás Sengel Oct 19 '18 at 23:46

1 Answers1

-1

I was able to figure some of them out for a problem I've been having:

@"City" -> CLPlacemark.city
@"State" -> CLPlacemark.administrativeArea
@"Country" -> CLPlacemark.country

See my question here.

Community
  • 1
  • 1
Haensl
  • 343
  • 3
  • 16