如何将 iPhone 的语言设置作为 Unity3D 原生功能?

发布于 2024-12-08 02:41:53 字数 279 浏览 0 评论 0原文

我已经尝试了一切方法来找到一种通过原生 Unity3D 函数获取 iPhone 语言设置的方法。但是,我发现了两种方法,它们是:

1)使用 guiText.text = Application.systemLanguage.ToString(); 但我用中文总是得到“未知”。 2)使用 NSUserDefaults 和 PlayerPrefs。 但这不是Unity3D原生功能,当我想开发我的Android版本时,我必须做一些额外的工作。

所以,任何人都可以告诉我:有没有完美的方法来做到这一点?非常感谢!

I've try everything to find a way to get the language setting of iPhone via a native Unity3D function. however, I found two ways, those are:

1) use guiText.text = Application.systemLanguage.ToString();
But I always get 'Unknown' in Chinese language.
2) use NSUserDefaults and PlayerPrefs.
But it's not a Unity3D native function, I'll have to do some extra work when I want to develop my Android version.

So, anyone can please show me: Is there a PERFECT way to do that? Thank you very much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以往的大感动 2024-12-15 02:41:53

我不知道什么是统一,但是 NSLocale 或 CFLocale 对你有帮助吗? NSLocale 基于 Objective-C,因此更容易使用:

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSLocale_Class/Reference/Reference.html

CFLocale 是基于 c 的,因此它的有点棘手,但提供了更多功能:

http://developer.apple.com/library/ mac/#documentation/CoreFoundation/Reference/CFLocaleRef/Reference/reference.html

如果您正在查找当前的语言代码,您应该能够获取当前的语言环境并进行检查。

I don't know what unity is, but would NSLocale or CFLocale help you? NSLocale is objective-c based and thus a bit easier to use:

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSLocale_Class/Reference/Reference.html

CFLocale is c-based, so its a bit more tricky, but offers more functionality:

http://developer.apple.com/library/mac/#documentation/CoreFoundation/Reference/CFLocaleRef/Reference/reference.html

If you are looking for the current language code you should be able to grab the current locale and inspect that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文