私はこのようなJSONを持っています。
Swift 4 を使用して、iOS アプリで対応する Decodable 構造体を作成する必要があります。
{
"cherry": {
"filling": "cherries and love",
"goodWithIceCream": true,
"madeBy": "my grandmother"
},
"odd": {
"filling": "rocks, I think?",
"goodWithIceCream": false,
"madeBy": "a child, maybe?"
},
"super-chocolate": {
"flavor": "german chocolate with chocolate shavings",
"forABirthday": false,
"madeBy": "the charming bakery up the street"
}
}
Decodable Struct の作成に関するヘルプが必要です。cherry
、odd
およびのような不明なキーに言及する方法super-chocolate
。