我开发了多语言、基于导航 Controller 的应用程序。应用程序的主菜单也有下面的设置屏幕。用户可以通过按下语言按钮更改为应用程序语言。当用户更改语言时,我想刷新主菜单屏幕并设置屏幕语言但我没有。
Best Answer-推荐答案 strong>
NSString *path = [[NSBundle mainBundle] pathForResource"nl" ofType"lproj"];
NSBundle *bundle = [NSBundle bundleWithPath:path];
NSString *englishWord = @"translate";
NSString *translation = [bundle localizedStringForKey:englishWord value:englishWord table:nil];
NSLog(@"%@ = %@", englishWord, translation);
// nl.lproj/Localizable.strings:
"translate" = "vertaal"
关于iphone - IOS 应用程序更改语言与自定义设置屏幕,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11930228/
|