I'm looking at some example of using NSLocalizedString
and there is a .string file in project where i can find:
"Loading" = "Wczytuję...";
And then in a app code i can find:
return NSLocalizedString(@"Loading", @"");
How can i create multilanguage version of my app using that? Or there is a other way?
I want to have button to change language.