In my Localizable.strings, I define a line with trailing spaces like:
"%@ points " = "%@ Punkte ";
This works fine in iOS6, but when run on the iOS7 emulator, the line is truncated and trailing spaces are removed.
Background: the line above is right-aligned in the label. I use spaces as a complement since I don't want to subclass UILabel or write a bunch of code for just one label.
I also tried using ASCII characters, but that also didn't work.
Any suggestions for a simple soul would be appreciated.
Thanks!
source share