打印区域设置名称
我想知道并打印我在设备上更改的区域设置名称。有什么办法可以打印它们吗?打印 NSLocale 对象没有帮助。
I want to know and print the locale names which I am changing on my device. Is there any way to print them. Printing a NSLocale object does not help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您希望单词显示的语言创建一个
NSLocale
,然后在NSLocale
对象上使用-displayNameForKey:value:
来获取NSLocaleIdentifier
键的显示名称。此方法的文档有一个示例,可以准确地向您展示您正在寻找的内容。
Create an
NSLocale
for the language in which you want the words to appear, then use-displayNameForKey:value:
on theNSLocale
object to get the display name for theNSLocaleIdentifier
key.The documentation for this method has an example that shows you exactly what you're looking for.