gpt4 book ai didi

swift NSLocalizedString in else if

转载 作者:行者123 更新时间:2023-11-28 09:10:39 24 4
gpt4 key购买 nike

我正在开发我的第一个 Swift 应用程序。现在我想使用 NSLocalizedString 翻译 BUTTON 中的文本,但我不知道如何快速编写它。

这是我的 else-if 函数:

override func viewDidLoad() {
super.viewDidLoad()
if volumeBool {
volumeOut.setTitle("SOUND ON", forState: UIControlState.Normal)
} else {
volumeOut.setTitle("SOUND OFF", forState: UIControlState.Normal)
}

感谢您的帮助。

最佳答案

使用

NSLocalizedString("string to translate", comment: "comment for the language file")

所以在你的viewDidLoad中:

override func viewDidLoad() {
super.viewDidLoad()

if volumeBool {
volumeOut.setTitle(NSLocalizedString("SOUND ON", comment: "Title for sound on"), forState: UIControlState.Normal)
}
else {
volumeOut.setTitle(NSLocalizedString("SOUND OFF", comment: "Title for sound off"), forState: UIControlState.Normal)
}
}

关于swift NSLocalizedString in else if,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29450508/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com