I use localization strings to localize interface elements. Everything works, except for the localization of the button name.
"21.title" = "It must be localized text"; // does not work
I think this is caused by the state of the button (... forState: UIControlStateNormal ...), the title can be set by view state. How can I define it in a localization file?
How to determine the button title in the localization string? What is the trick?
NOTE. I know how to do this from the source code, my question is how to do this using the localization string file. So: I know how to use localization strings to localize the user interface, with the exception of buttons.
ios xcode localization storyboard
Tom
source share