I have a class in Swift whose structure resembles this:
class MyClass {
var name: String
var data: String
}
Which could be initialised where data
contains a JSON object encoded as a String.
var instance = MyClass()
instance.name = "foo"
instance.data = "{\"bar\": \"baz\"}"
I'd now like to serialise this instance using JSONEncoder
, I'd get an output similar to this:
{
"name": "foo",
"data": "{\"bar\": \"baz\"}"
}
However, what I'd really like
{
"name": "foo",
"data": {
"bar": "baz"
}
}
Can I achieve this with JSONEncoder? (without changing the data
type away from String
)
You'll first need to decode
data
as generic JSON. That's a bit tedious, but not too difficult. See RNJSON for a version I wrote, or here's a stripped-down version that handles your issues.With that, you can decode the JSON and then re-encode it: