RestKitにマッピングオブジェクトネストされたが、私が構造以下のいる
//要求
{
"type": "handbook",
"hash": ""
}
//応答
{
"body": {
"songs": [
{
"id": 1,
"length": 1231,
"name": "song 1"
},
{
"id": 2,
"length": 3155,
"name": "song 2"
}
],
"setlists": [
{
"id": 1,
"name": "setlist1",
"songs": [
{
"id": 1
},
{
"id": 2
}
]
},
{
"id": 2,
"name": "set list 2",
"songs": [
{
"id": 3
},
{
"id": 4
},
{
"id": 5
}
]
}
]
},
"state": true,
"type": "handbook"
}
私は解決のためのアドバイスが必要2つの問題: 1)私はどのようにオブジェクトを応答の "本体"にマップできますか? 2)セットリストをソングにどのように接続できますか?