I use this code to set a label with a location string
locationString = [[NSString alloc] initWithFormat:@"%@%@ - %@ %@%@", thoroughfare,subThoroughfare,postalCode, locality,countryCode]; locationLabel.text = locationString; where thoroughfare, subThoroughfare, postalCode, locality,countryCode are obtained from a placemark.
Now, I'd like to visualize this string according the current locale. Have I specify a string format for each locale in which I'm interested or there is a simpler way to obtain this?
Thanks, Fran