Trying to get formatted address from AddressDictionary, that I got from CLGeocoder. Used following code with no result:
subtitle = [NSString stringWithString
The documentation for the addressDictionary
property says:
You can format the contents of this dictionary to get a full address string as opposed to building the address yourself. To format the dictionary, use the ABCreateStringWithAddressDictionary function as described in Address Book UI Functions Reference.
So add and import the AddressBookUI
framework and try:
subtitle =
ABCreateStringWithAddressDictionary(placemark.addressDictionary, NO);