MKNetworkOperation *op = [self operationWithPath:@"thestore/services/storeservice.svc/getfavorites" params:fetchedObjects httpMethod:@"POST"];
fetechedObjects は配列です。配列をループして、POST リクエストの本文に入力する必要がある値を取得できます
[
{
"id": 9222,
"latitude": 19.7897,
"longitude": -64.0208
},
{
"id": 7832,
"latitude": 79.7713,
"longitude": -44.1084
}
]
しかし、MKNetworkOperation の使用方法がわかりません。