如何将字典的嵌套值映射到 iOS swift 中的数组?
How to map nested values of dictionary into array in iOS swift?
selectBoxItems
的类型是 [String : [String : SelectBoxTextField]]
我想映射 selectBoxItems
以获得结果 [SelectBoxTextField]
我该怎么做?
selectBoxItems.values.flatMap(\.values)
selectBoxItems
的类型是 [String : [String : SelectBoxTextField]]
我想映射 selectBoxItems
以获得结果 [SelectBoxTextField]
我该怎么做?
selectBoxItems.values.flatMap(\.values)