如何自动设置 UIMenuItems 的语言?

How to automatically set the language of UIMenuItems?

我正在尝试使用自定义 UIMenuItem 通过 UIMenuController 向我的应用添加语音功能。我的问题是:如果我需要支持多种语言,我是否也必须在这些多种语言中定义 UIMenuItems 的标题? -我到处都找过了,所以这是最后一招:)

-非常感谢任何帮助,并提前感谢您:)

据我所知,UIMenuItem 标题是 NSString https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIMenuItem_Class/index.html#//apple_ref/occ/instm/UIMenuItem/initWithTitle:action:

因此您可以使用本地化字符串:

https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/#//apple_ref/occ/clm/NSString/localizedStringWithFormat:

您必须创建本地化的字符串,您可以在其中使用不同的语言放置字符串:

http://www.raywenderlich.com/64401/internationalization-tutorial-for-ios-2014