I need to know if localizable Strings files can dynamically be changed, I want to fetch and display the strings from my own server so that if a string has to be changed, a new build updated won't be needed.
I know that a localized string can be read from bundle in the following way but is there a way to actually change that dynamically?
NSString *danishLanguageBundle = [[NSBundle mainBundle] pathForResource:@"da" ofType:@"lproj"];
NSBundle* languageBundle = [NSBundle bundleWithPath:danishLanguageBundle];
NSString *characteristicsString = [languageBundle localizedStringForKey:@"CHARACTERISTICS" value:@"" table:nil];