iphone - Unicode not converted when displayed -
I am localizing an app for Spanish, and localizationable for that language via Unicode. String file The letter is encoded in. For example, I have an entry:
"login.saveSettings" = "GUIDER CONFIGURATION \\ u00F3n:"; Instead of "guard configuration": "
which is displayed properly in the UILB (" Garden Configurgy \\ u00F3n: ")," Garden Configurator: "I tried various forms like" \ u00F3 ", or "\\ U00F3", but without any success. I use NSLocalizedString like this:
self.saveSettingsLabel.text = NSLocalizedString (@ "login.saveSettings", @ "Save Settings:");
What am I doing wrong?
Thanks for any help! Mihai
The correct type is \ U00F3
with 1 backslash and one capital U .
Comments
Post a Comment