Localizable Strings

Localizable.strings – How to load translation files dynamically from a web server and use them it inside your iPhone App

4 January, 2013 admin 24

We all know we can use “Localizable.strings” to translate our Apps into different languages like this in our code: NSLocalizedString(@”myKey”, @””); … if we have created our “Localizable.strings” file first and put in some keys and values… but what if I want my translation to be dynamic, that is, download it from a webserver and use the key value pairs of that file instead of our “locked” app resources like Localizable.strings after deployment? Fortunately there is a […]