我有一个 swiftyJSON 对象,例如:
[{
"location" : "http://...",
"img" : "http://...",
"commentCount" : 0,
"timestamp" : 1432460217550,
}]
我希望能够将另一个 swiftyJSON 对象附加到它,使其看起来像:
[{
"location" : "http://...",
"img" : "http://...",
"commentCount" : 0,
"timestamp" : 1432460217550,
},
{
"location" : "http://...",
"img" : "http://...",
"commentCount" : 1,
"timestamp" : 1432460217571,
}
]
我不能在 swiftyJSON 对象上使用+=
或。.append
我怎样才能做到这一点?