vote up 0 vote down star

Is there a way to change the application language during runtime?

So, after the change NSLocalizedString immediately returns the string for the new language.

What I'm doing now is changing the language using the code below:

- (void)onChangeLanguage: (id)sender {
 NSArray *lang = [NSArray arrayWithObjects:((InfoWhatever *)sender).language, nil];
 [[NSUserDefaults standardUserDefaults] setObject:lang forKey:@"AppleLanguages"];
 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
 NSArray *languages = [defaults objectForKey:@"AppleLanguages"];
 NSString *currentLanguage = [languages objectAtIndex:0];

 NSLog(@"Current language: %@", currentLanguage);
}

The language will change but only after restarting the app.

flag
FWIW, this is how it works on the desktop (Mac), too. Running applications aren't affected by language changes. – Wevah Oct 18 at 12:37

1 Answer

vote up 0 vote down check

I doubt you can do this, even the Settings app cannot do it.

(When you change the language in the Settings app, the screen goes black, and displays "setting language..." and a progress wheel. After a long wait, you are back in Springboard. It almost looks like the phone reboots.)

link|flag
Okay then, the reboot sounds acceptable. Is there any apple policy against quitting? – shinjin Oct 20 at 9:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.