I'm using AFJSONRequestOperation to upload the images.
In the case of uploading numbers of images, some requests are failed with the timeout error.
I tried
AFJSONRequestOperation *operation = ...
[operation start];
and
AFJSONRequestOperation *operation = ...
[operations addObject:operation];
...
[client enqueueBatchOfHTTPRequestOperations:operations progressBlock:nil completionBlock:nil];
However, still no luck.
I think that the time count starts when the operation is created.
So, should I schedule the requests one by one for my own algorithm?