0

When I try to post an object using RestKit I get the following error. "Cannot send a request that is loading or loaded without resetting it first."

What does it mean? How can I reset a request?

aryaxt
  • 76,198
  • 92
  • 293
  • 442

1 Answers1

0

Without posting a code, it is hard to say where the error is, but: This error occurs, when either _isLoading or _isLoaded is set to NO. You could try to reset your request before sending it using [myRequest reset];.

tilo
  • 14,009
  • 6
  • 68
  • 85