xcode: 如何本地化代码中的字符串?
xcode: How to localize strings in code?
本地化是指翻译成不同的语言。
我只找到了用于本地化故事板的说明,但我也有在代码中设置的字符串。
(我正在使用 Swift)
简而言之 — 请参阅 NSLocalizedString
函数。这也在 Swift 中...它的声明如下所示:
func NSLocalizedString(
key: String,
tableName: String? = default,
bundle: NSBundle = default,
value: String = default,
#comment: String) -> String
第三到第六个参数有默认值,所以你可以这样调用:
NSLocalizedString("foo") // -> Maybe「フー」in your Japanese strings file?
或者像这样:
NSLocalizedString("foo", comment: "metasyntactic variable")
或使用任何其他参数组合。
查看 Apple 文档中的 Internationalization and Localization Guide。
本地化是指翻译成不同的语言。 我只找到了用于本地化故事板的说明,但我也有在代码中设置的字符串。 (我正在使用 Swift)
简而言之 — 请参阅 NSLocalizedString
函数。这也在 Swift 中...它的声明如下所示:
func NSLocalizedString(
key: String,
tableName: String? = default,
bundle: NSBundle = default,
value: String = default,
#comment: String) -> String
第三到第六个参数有默认值,所以你可以这样调用:
NSLocalizedString("foo") // -> Maybe「フー」in your Japanese strings file?
或者像这样:
NSLocalizedString("foo", comment: "metasyntactic variable")
或使用任何其他参数组合。
查看 Apple 文档中的 Internationalization and Localization Guide。