Could not find an updated example of how to match relationships like the ones below.
{ "seats": [ { "number": "2A", "user_id": 1 }, { "number": "4E", "user_id": 2 } ], "users": [ { "id": 1, "name": "Foo" }, { "id": 2, "name": "Bar" } ] }
using RestKit (0.9.3) for the model
User NSUInteger id NSString* name Seat NSString* number User* user;
qnoid source share