我想以我的母语查看默认按钮标题,
甚至我将 iPad 的语言更改为另一种语言。我的应用程序仍然显示英文的...编辑、完成、保存等。
我还在 XCode 中将 CFBundleDevelopmentRegion 设置为用户定义的变量,但没有帮助!
你能帮我吗 ?
我想以我的母语查看默认按钮标题,
甚至我将 iPad 的语言更改为另一种语言。我的应用程序仍然显示英文的...编辑、完成、保存等。
我还在 XCode 中将 CFBundleDevelopmentRegion 设置为用户定义的变量,但没有帮助!
你能帮我吗 ?
你应该做这些事情:
将您的母语添加到应用程序支持Localization
的语言数组中;
使您的Application.Main
程序看起来像:
static void Main (string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
NSUserDefaults.StandardUserDefaults.SetValueForKey(NSArray.FromStrings("tr"), new NSString("AppleLanguages"));
NSUserDefaults.StandardUserDefaults.Synchronize();
UIApplication.Main (args, null, "AppDelegate");
}
那么,这
转向这个
(我建议你的语言是土耳其语。)
对于 monotouch,我认为它是不同的,它们隐藏了一些减少 IPA 大小的语言。
http://docs.xamarin.com/guides/ios/advanced_topics/localization_and_internationalization