Tim Walsh
Tim Walsh

Reputation: 1105

How to load localization strings from JSON in iOS

I have a service that will return JSON of key/value pairs of localized strings. This data can change, so I was looking to set up a call to this service to get the latest localization strings.

Since, I will not be bundling the localization string with the app.
Should I build the .string file pragmatically on update?
Or insert the records into Core Data?

Just looking for the best solution for performance.

Thank you

Upvotes: 0

Views: 2926

Answers (1)

Malkit Singh
Malkit Singh

Reputation: 349

Give this a try, this can be useful and reduce much of your code: MCLocalization

Upvotes: 2

Related Questions