是否可以找到iOS项目中可用的所有本地化表?
背景:
在一个基于Swift的iOS项目中,我使用了多个本地化的.strings
文件。例如,一个文件包含不同项目中使用的通用字符串,一个项目特定字符串等。
使用自定义本地化方法可以很好地工作,该方法检查是否在文件/表a中找到给定的字符串,如果没有找到翻译,则继续在文件/表格B中搜索:
func localizedString(forKey key: String) -> String {
// Search in project specific, default file Localizable.strings
var result = Bundle.main.localizedString(forKey: key, value: nil, table: nil)
// If now translation was found, continue search in shared file "Common.strings"
if result == key {
result = Bundle.main.localizedString(forKey: key, value: nil, table: "Common")
}
if result == key {
result = Bundle.main.localizedString(forKey: key, value: nil, table: "OtherFile")
}
...
return result
}
是否可以将其扩展到一个更通用的解决方案,在该解决方案中,我不必手动指定文件/表,而是自动指定?这将允许在具有不同字符串文件的不同项目中使用相同的代码。
// PSEUDOCODE
func localizedString(forKey key: String) -> String {
for tableName in Bundle.main.allLocalizdationTables { // DOES NOT EXIST...
var result = Bundle.main.localizedString(forKey: key, value: nil, table: tableName)
if result != key {
return result
}
}
return key
}
那么:有可能吗
这应该可以做到:
func localizedString(forKey key: String) -> String {
guard let filesURL = Bundle.main.urls(forResourcesWithExtension: "strings", subdirectory: nil) else { return key }
let tablesName = filesURL.map { $0.deletingPathExtension().lastPathComponent }
for aTableName in tablesName {
var result = Bundle.main.localizedString(forKey: key, value: nil, table: aTableName)
if result != key {
return result
}
}
return key
}