i'm developing an app which needs to sync their data every 10 seconds from the API. Therefore i'm using the NSOperation and the OperationQueue. Every 10 seconds the operation is requesting data from the api and if it is finished, it will sleep with the following code:
[NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:SYNC_TIME]];
This works nice, but now i want to add the possibility to create new data on the mobile device and send them to the API. If then the API returns success, i want to start the operation to get the new data.
My question is, how can i wake up the operation after sleepUntilDate? Or is there another possibility to do the things i want to do?
Thanks.