I want to parse a JSON file using Unbox library. The JSON is an array of dictionary array. How can we do that? I tried using keypath and all but unable to parse it. I need array of section.
I tried with single hierarchy and able to parse it.
Library used:https://github.com/JohnSundell/Unbox
{
"content": [
{
"section": [
{
"title": "Test1"
},
{
"title": "Test2"
}
]
},
{
"section": [
{
"title": "Test1"
},
{
"title": "Test2"
}
]
}
]
}
struct Data : Unboxable {
let title: String
init(title: String) {
self.title = title
}
init(unboxer: Unboxer) throws {
self.title = try unboxer.unbox(key: "title")
}
}
let dataArray : Data = try unbox(data: Data(contentsOf: url!))
You will need some nested
struct
s to hold all of the data available. The minimal data structure is something like:The example json and parsing strategy:
Only for Swift 4 or later
If you aren't bound to the Swift version, there is even more simpler way to achieve this: