5

我想以我的母语查看默认按钮标题,

甚至我将 iPad 的语言更改为另一种语言。我的应用程序仍然显示英文的...编辑、完成、保存等。

我还在 XCode 中将 CFBundleDevelopmentRegion 设置为用户定义的变量,但没有帮助!

你能帮我吗 ?

4

2 回答 2

13

你应该做这些事情:

  • 将您的母语添加到应用程序支持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");
    }

那么,这

在此处输入图像描述

转向这个

在此处输入图像描述

(我建议你的语言是土耳其语。)

于 2013-04-01T07:41:27.120 回答
1

对于 monotouch,我认为它是不同的,它们隐藏了一些减少 IPA 大小的语言。

http://docs.xamarin.com/guides/ios/advanced_topics/localization_and_internationalization

于 2013-04-01T08:14:49.483 回答