CLPlacemark addressDictionary keys on iOS 9

1.3k Views Asked by At

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 ?

1

There are 1 best solutions below

0
On

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.