0

I want to update or replace Localizable.strings Runtime. i have .strings files on server. so if any one can update .strings files on server. then also i need to update value or replace into bundle.

or

can i read .strings file form server directly? and make all static string localized.

Romit M.
  • 898
  • 11
  • 28
  • Possible duplicate of [Can I load a localizable.strings file into an iOS app over-the-air](http://stackoverflow.com/questions/12358044/can-i-load-a-localizable-strings-file-into-an-ios-app-over-the-air) – Pascal Apr 14 '16 at 10:34

1 Answers1

1

Sure you can. You have to roll your own.

If you look at the NSLocalizableString macro, you can make your own like :

RMLocalizableString that instead of pointing to the resources, points to a file you have downloaded in your documentation folder. But of course you have to make sure the file is actually there.

Trausti Thor
  • 3,722
  • 31
  • 41