Im using the Parse Framework for developing an app that loads images from the Parse Server, im using the Parse method:
PFFile *file = object[@"file"];
[file getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
...
}
but i want to limit the number of files getting in the background
Any idea how can i do that?
Thanks