When you are ready to localize your App, Xcode will auto-generate a Main.strings file for your Main Storboard. In that file every element of the User Interface (labels & more) are listed in the following format:
1 2 |
/* Class = "UILabel"; text = "Subtitle"; ObjectID = "y5E-9n-LU8"; */ "y5E-9n-LU8.text" = "Untertitel"; |
That’s a pretty awesome format, as it makes localization quick and simple. However, if you add Elements after […]