SwiftyJson 是否可以遍历对象而不是数组?

SwiftyJson is it possible to iterate through objects but not arrays?

我有对象

 {"FIELD NAME":{
         "SUBNAME":{
            "FIELD_ONE":"DATA",
            "FIELD_TWO":"DATA",
          }
          "SUBNAME2":{
            "FIELD_THREE":"DATA",
            "FIELD_FOUR":"DATA",
          }
 }

我想从 SUBNAME 和 SUBNAME2 获取数据。问题是我不知道这些字段的名称以及它们有多少。

是否可以使用 SwiftJSON 遍历它们?

将 JSON 转换为对象后,您可以执行以下操作: for (subname, dictionary) in json { // use subname and the dictionary, which contains the FIELD_* entries }