我需要将值存储在Swift中的动态对象数组的变量中

时间:2017-01-24 04:47:26

标签: json swift swift3

这是我的JSON。关键字段有n长度&基于密钥长度,数组对象值也会增加:

{
  "key_fields": [
    {
      "fieldName": "xxxxx"
    },
    {
      "fieldName": "yyyyy"
    }
  ],
  "Array": [
    {
      "xxxxx": 1,
      "yyyyy": 2
    },
    {
      "xxxxx": 3,
      "yyyyy": 4
    }
  ]
}

1 个答案:

答案 0 :(得分:0)

你的问题有点模糊。我想你可以使用TupleArray这样的

var result = (key_fields: [], array: [])
result.key_fields.append((fieldName: "xxxxx", fieldName2: 2))