Matthieu Riegler
Matthieu Riegler

Reputation: 55816

CLPlacemark addressDictionary keys on iOS 9

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 ?

Upvotes: 1

Views: 1304

Answers (1)

Haensl
Haensl

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

Related Questions