Reputation: 55816
Reading the documentation, Apple points to ABPerson for the keys to use on CLPlacemark's addressDictionary.
CLPlacemark
addressDictionary
But since iOS 9, ABPerson is deprecated.
ABPerson
Is there something else to use for the keys ?
Upvotes: 1
Views: 1304
Reputation: 475
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.
Upvotes: -1