RestKit - Process one REST operation at a time
问题 I'm using RestKit 0.20.3 and have some REST operations that needs to be done in a certain order ( the response from one REST operation needs to be included in the request parameter mapping for the next ). I tried setting up the queue to handle one operation at a time like this: RKObjectManager.sharedManager.operationQueue.maxConcurrentOperationCount = 1; And adding the operations like this: for (id insertedObject in insertedObjects) { [RKObjectManager.sharedManager postObject:insertedObject