gpt4 book ai didi

ios - 在 Localized.strings 中按值获取键

转载 作者:行者123 更新时间:2023-11-30 11:03:00 25 4
gpt4 key购买 nike

我收到一个语言 1 的输入字符串,我想在我的 Localized.strings 中找到它对应的键。稍后我将使用此 key 在语言 2 中检索其值。

如何按值查找键?

最佳答案

  let stringsPath = Bundle.main.path(forResource: "Localizable", ofType: "strings")
var dictionary = NSDictionary (contentsOfFile: stringsPath ?? "")

if let temp = dictionary?.allValues.filter({$0 as? String == "Your Value to be searched"}), temp.count > 0 {
print("nice found")
}

检查上面的代码。

关于ios - 在 Localized.strings 中按值获取键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53079769/

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