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 应用程序语言?
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01