How to change iPhone app language during runtime?(如何在运行时更改 iPhone 应用程序语言?)
问题描述
有没有办法在运行时更改应用程序语言?
Is there a way to change the application language during runtime?
因此,更改后 NSLocalizedString
立即返回新语言的字符串.
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.
推荐答案
我怀疑你能做到这一点,即使设置应用程序也做不到.
I doubt you can do this, even the Settings app cannot do it.
(当你在设置应用中更改语言时,屏幕变黑,并显示设置语言..."和一个进度轮.经过漫长的等待,你回到了 Springboard.它几乎看起来像手机重新启动.)
(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.)
这篇关于如何在运行时更改 iPhone 应用程序语言?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在运行时更改 iPhone 应用程序语言?


- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- URL编码Swift iOS 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- UITextView 内容插图 2022-01-01