我想检索从 *.ipa 文件中获取的 Locazable.strings。但是,当我这样做时,我会得到一些奇怪的字符混合
我该如何阅读它?
我的朋友了解如何:
plutil -convert json Localizable.strings
斯威夫特 3
let path = Bundle.main.path(forResource: "Localizable", ofType: "strings", inDirectory: nil, forLocalization: "en")
let dic = NSDictionary(contentsOfFile: path!)
debugPrint(dic)
将您的 localizable.strings 文件拉到 Xcode 项目中并运行上面的代码,然后,您可以在 Xcode 控制台中获取 dic,也可以将其存储在文本中。