In my chat app while running it shows the following error with parse,
Trying to retrieve from cache
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'This query has an outstanding network connection. You have to wait until it's done.'
Whats wrong with this,please help me out?Thanks in advance
(For clarity, the OP is referring to the parse.com BaaS SDK).
You’re probably trying to do something to a
PFQuerywhile it’s in the middle of the previous operation. Parse objects can only perform one network operation at a time. Look through your code to see whether you’re making two query calls on the same query object without waiting for the first to complete.