How can I print the body sent by Restkit (IOS)

Viewed 3226

I'm sendind an object through RKObjectManager:

[[RKObjectManager sharedManager] postObject:myObject delegate:delegate];

The mapping and route is already configured and it works successfully. It sends a json and the server receive the request, but I have a question. On IOS side, how can I print the json sent to the server.

1 Answers
Related