考虑正确的格式 list
list
您可以使用 flatMap
flatMap
var list = [["one"],["two"],["three"]] var flatted = list.flatMap{ $0 } // result : ["one", "two", "three"]
这是一个使用的解决方案 降低
var theResult = list.reduce([String](), { result, item in return result + item.reduce([String](), { $0 + [$1] }) })