Swiftyjson: No mechanism to create empty object.

Created on 9 Apr 2015  路  3Comments  路  Source: SwiftyJSON/SwiftyJSON

There doesn't seem to be a mechanism to create an empty dictionary object? Since [] in swift can be interpreted as an empty array or empty object. And,

var json:JSON = JSON([])

creates an empty array, so you can't add properties.

E.g., This would seem to be appropriate, but doesn't work

var json:JSON = JSON()
json["id"].intValue = 123
println(json)
{
"id": 123
}

Most helpful comment

Just checked it: var json:JSON = [:] works, because JSON implements the DictionaryLiteralConvertible protocol.

All 3 comments

In Swift, [:] represents an empty dictionary, but SwiftyJSON doesn't have an dictionary-based initializer yet. This should be quite easy to add.

Just checked it: var json:JSON = [:] works, because JSON implements the DictionaryLiteralConvertible protocol.

I think this issue can be closed.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ladislas picture ladislas  路  4Comments

kwstasna picture kwstasna  路  4Comments

bloqlist picture bloqlist  路  7Comments

Gujci picture Gujci  路  4Comments

crickabhi picture crickabhi  路  4Comments